forked from kettanaito/react-advanced-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
67 lines (65 loc) · 1.46 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module.exports = {
// extends: ['airbnb-base/legacy'],
plugins: ['react', 'import'],
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 8,
ecmaFeatures: {
classes: true,
jsx: true,
modules: true,
},
},
env: {
browser: true,
es6: true,
},
globals: {
expect: true,
},
settings: {
'import/resolver': {
webpack: {
config: './webpack.config.js',
},
},
},
rules: {
indent: 0,
strict: [2, 'never'],
'no-console': 0,
'max-len': [1, 120],
'consistent-return': 0,
semi: [1, 'never'],
'comma-dangle': 0,
'array-callback-return': 0,
'arrow-parens': [2, 'always'],
'arrow-body-style': 0,
'space-before-function-paren': 0,
'object-curly-newline': 0,
'no-mixed-operators': 0,
'no-plusplus': 0,
'no-shadow': 0,
'func-names': 0,
'no-param-reassign': 0,
'class-methods-use-this': 0,
'no-prototype-builtins': 0,
'no-await-in-loop': 0,
'no-return-assign': 0,
'function-paren-newline': 0,
'prefer-promise-reject-errors': 0,
'no-confusing-arrow': 0,
'padded-blocks': 0,
'no-underscore-dangle': 0,
'no-use-before-define': 0,
/* Import */
'import/first': 0,
'import/no-extraneous-dependencies': 0,
'import/prefer-default-export': 0,
'import/no-named-as-default-member': 0,
/* React */
'react/jsx-uses-react': 2,
'react/jsx-uses-vars': 2,
'react/react-in-jsx-scope': 2,
},
}