-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
42 lines (42 loc) · 1005 Bytes
/
.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
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'airbnb',
],
globals: {
test: 'readonly',
expect: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
settings: {
react: {
version: '16.13',
},
},
plugins: [
'react'
],
rules: {
'indent': ['error', 4],
'jsx-a11y/label-has-associated-control': [2, {assert: 'either'}],
'max-len': ['warn', { 'code': 120 }],
'no-console': 0,
'no-debugger': 0,
'no-plusplus': 0,
'import/no-extraneous-dependencies': ['error', { 'devDependencies': true }],
'react/jsx-filename-extension': 0,
'react/jsx-indent': [2, 4],
'react/jsx-indent-props': [2, 4],
'react/jsx-one-expression-per-line': 0,
'react/no-unescaped-entities': 0,
},
};