Skip to content

Commit

Permalink
Adding overall framework files.
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkpunkd committed Mar 13, 2018
1 parent f8eef38 commit 9aac065
Show file tree
Hide file tree
Showing 7 changed files with 2,905 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,36 @@
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module'
},
env: {
es6: true,
browser: true,
node: true
},
extends: 'eslint:recommended',
globals: {
__static: true
},
plugins: [
'html'
],
'rules': {
'indent': [
'error',
2
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
],
'no-console': 'off',
'prefer-arrow-callback': 'error'
}
};

0 comments on commit 9aac065

Please sign in to comment.