-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
58 lines (56 loc) · 1.25 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
module.exports = {
extends: ['airbnb-base', 'airbnb-base/legacy'],
plugins: ['react', 'import', 'mocha'],
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 7,
ecmaFeatures: {
classes: true,
jsx: true,
modules: true
}
},
env: {
browser: true,
mocha: true
},
settings: {
'import/resolver': {
webpack: {
config: './webpack.config.js'
}
}
},
rules: {
'strict': [2, 'never'],
'indent': 0,
'no-console': 0,
'max-len': [1, 120, {
"ignoreStrings": true,
"ignoreComments": true,
"ignoreTemplateLiterals": true
}],
'consistent-return': 0,
'array-callback-return': 0,
'import/no-extraneous-dependencies': 0,
'arrow-body-style': 0,
'object-curly-newline': 0,
'no-mixed-operators': 0,
'no-plusplus': 0,
'no-shadow': 0,
'func-names': 0,
'no-param-reassign': 0,
'import/prefer-default-export': 0,
'class-methods-use-this': 0,
'no-prototype-builtins': 0,
'no-await-in-loop': 0,
'no-confusing-arrow': 0,
'function-paren-newline': 0,
/* React */
'react/jsx-uses-react': 2,
'react/jsx-uses-vars': 2,
'react/react-in-jsx-scope': 2,
/* Mocha */
'mocha/no-exclusive-tests': 'error'
}
};