airbnb lint

This commit is contained in:
Colin Megill
2017-10-04 01:06:24 -07:00
parent 3b093cd371
commit 87c1252205
+2 -9
View File
@@ -1,8 +1,8 @@
module.exports = {
root: true,
parser: 'babel-eslint',
extends: 'formidable/configurations/es6-react',
env: { browser: true, commonjs: true, es6: true, node: true, mocha: true },
extends: 'airbnb',
env: { browser: true, commonjs: true, es6: true },
globals: { expect: true },
parserOptions: {
ecmaVersion: 6,
@@ -10,20 +10,13 @@ module.exports = {
ecmaFeatures: {
jsx: true,
generators: true,
experimentalObjectRestSpread: true
}
},
rules: {
quotes: [ 2, 'single', { allowTemplateLiterals: true } ],
'no-magic-numbers': 'off',
'func-style': 'off',
'arrow-parens': 'off',
'no-use-before-define': 'off',
'react/jsx-filename-extension': 'off',
'react/require-extension': 'off',
'react/no-multi-comp': 'warn',
'react/prop-types': 'warn',
'react/sort-comp': 'warn',
'react/sort-prop-types': 'warn'
}
};