butlerx
8 years ago
committed by
cbutler
9 changed files with 228 additions and 229 deletions
@ -1,73 +0,0 @@ |
|||
{ |
|||
'env': { |
|||
'es6' : true, |
|||
'node' : true, |
|||
}, |
|||
"extends": [ |
|||
'eslint:recommended' |
|||
], |
|||
'rules' : { |
|||
'indent': [ |
|||
'error', |
|||
2, |
|||
], |
|||
'linebreak-style': [ |
|||
'error', |
|||
'unix', |
|||
], |
|||
'quotes': [ |
|||
'error', |
|||
'single', |
|||
], |
|||
'semi': [ |
|||
'error', |
|||
'always', |
|||
], |
|||
'comma-dangle': [ |
|||
'error', |
|||
'always-multiline', |
|||
], |
|||
'key-spacing': [ |
|||
'error', |
|||
{ |
|||
'multiLine': { |
|||
'beforeColon': false, |
|||
'afterColon' : true, |
|||
}, |
|||
'align': { |
|||
'beforeColon': false, |
|||
'afterColon' : true, |
|||
'on' : 'colon', |
|||
'mode' : 'strict', |
|||
}, |
|||
}, |
|||
], |
|||
'no-var': [ |
|||
'error', |
|||
], |
|||
'no-console': [ |
|||
'error', |
|||
{ |
|||
'allow': [ |
|||
'warn', |
|||
'trace', |
|||
'log', |
|||
'error' |
|||
] |
|||
} |
|||
], |
|||
'prefer-arrow-callback': [ |
|||
'error', |
|||
{ |
|||
'allowNamedFunctions': true |
|||
} |
|||
], |
|||
'prefer-const': [ |
|||
'error', |
|||
{ |
|||
'destructuring' : 'any', |
|||
'ignoreReadBeforeAssign': false, |
|||
}, |
|||
], |
|||
}, |
|||
} |
@ -0,0 +1,36 @@ |
|||
module.exports = { |
|||
env: { |
|||
es6 : true, |
|||
node: true, |
|||
}, |
|||
extends: ['airbnb'], |
|||
rules : { |
|||
'linebreak-style' : ['error', 'unix'], |
|||
'arrow-parens' : ['error', 'as-needed'], |
|||
'no-param-reassign' : ['error', { props: false }], |
|||
'func-style' : ['error', 'declaration', { allowArrowFunctions: true }], |
|||
'no-use-before-define': ['error', { functions: false }], |
|||
'no-shadow' : [ |
|||
'error', |
|||
{ |
|||
builtinGlobals: true, |
|||
hoist : 'functions', |
|||
allow : ['resolve', 'reject', 'err'], |
|||
}, |
|||
], |
|||
'no-console': [ |
|||
'error', |
|||
{ |
|||
allow: ['warn', 'trace', 'log', 'error'], |
|||
}, |
|||
], |
|||
'consistent-return': 0, |
|||
'key-spacing' : [ |
|||
'error', |
|||
{ |
|||
multiLine: { beforeColon: false, afterColon: true }, |
|||
align : { beforeColon: false, afterColon: true, on: 'colon', mode: 'strict' }, |
|||
}, |
|||
], |
|||
}, |
|||
}; |
@ -1,67 +0,0 @@ |
|||
{ |
|||
'env': { |
|||
'es6' : true, |
|||
'browser': true, |
|||
}, |
|||
'globals': { |
|||
'hterm': true, |
|||
'lib': true, |
|||
'io': true |
|||
}, |
|||
"extends": [ |
|||
'eslint:recommended' |
|||
], |
|||
'rules' : { |
|||
'indent': [ |
|||
'error', |
|||
2, |
|||
], |
|||
'linebreak-style': [ |
|||
'error', |
|||
'unix', |
|||
], |
|||
'quotes': [ |
|||
'error', |
|||
'single', |
|||
], |
|||
'semi': [ |
|||
'error', |
|||
'always', |
|||
], |
|||
'comma-dangle': [ |
|||
'error', |
|||
'always-multiline', |
|||
], |
|||
'key-spacing': [ |
|||
'error', |
|||
{ |
|||
'multiLine': { |
|||
'beforeColon': false, |
|||
'afterColon' : true, |
|||
}, |
|||
'align': { |
|||
'beforeColon': false, |
|||
'afterColon' : true, |
|||
'on' : 'colon', |
|||
'mode' : 'strict', |
|||
}, |
|||
}, |
|||
], |
|||
'no-var': [ |
|||
'error', |
|||
], |
|||
'prefer-arrow-callback': [ |
|||
'error', |
|||
{ |
|||
'allowNamedFunctions': true |
|||
} |
|||
], |
|||
'prefer-const': [ |
|||
'error', |
|||
{ |
|||
'destructuring' : 'any', |
|||
'ignoreReadBeforeAssign': false, |
|||
}, |
|||
], |
|||
}, |
|||
} |
@ -0,0 +1,37 @@ |
|||
module.exports = { |
|||
env: { |
|||
es6 : true, |
|||
browser: true, |
|||
}, |
|||
globals: { |
|||
hterm: true, |
|||
lib : true, |
|||
io : true, |
|||
}, |
|||
extends: ['airbnb'], |
|||
rules : { |
|||
'no-underscore-dangle': 0, |
|||
'class-methods-use-this': 0, |
|||
'linebreak-style' : ['error', 'unix'], |
|||
'arrow-parens' : ['error', 'as-needed'], |
|||
'no-param-reassign' : ['error', { props: false }], |
|||
'func-style' : ['error', 'declaration', { allowArrowFunctions: true }], |
|||
'no-use-before-define': ['error', { functions: false }], |
|||
'no-shadow' : [ |
|||
'error', |
|||
{ |
|||
builtinGlobals: true, |
|||
hoist : 'functions', |
|||
allow : ['resolve', 'reject', 'err'], |
|||
}, |
|||
], |
|||
'consistent-return': 0, |
|||
'key-spacing' : [ |
|||
'error', |
|||
{ |
|||
multiLine: { beforeColon: false, afterColon: true }, |
|||
align : { beforeColon: false, afterColon: true, on: 'colon', mode: 'strict' }, |
|||
}, |
|||
], |
|||
}, |
|||
}; |
Loading…
Reference in new issue