diff --git a/configuration/eslint/eslint.js b/configuration/eslint/eslint.js index 5648696b..e50ac01a 100644 --- a/configuration/eslint/eslint.js +++ b/configuration/eslint/eslint.js @@ -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' } };