37 lines
832 B
JavaScript
37 lines
832 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
'jest/globals': true,
|
|
'cypress/globals': true
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:react/recommended'],
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['react', 'jest', 'cypress'],
|
|
rules: {
|
|
indent: ['error', 2],
|
|
'linebreak-style': ['error', 'unix'],
|
|
quotes: ['error', 'single'],
|
|
semi: ['error', 'never'],
|
|
eqeqeq: 'error',
|
|
'no-trailing-spaces': 'error',
|
|
'object-curly-spacing': ['error', 'always'],
|
|
'arrow-spacing': ['error', { before: true, after: true }],
|
|
'no-console': 0,
|
|
'react/prop-types': 0,
|
|
'react/react-in-jsx-scope': 'off',
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
}
|