-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
50 lines (50 loc) · 1.26 KB
/
.eslintrc.json
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
{
"env": {
"browser": true,
"jest/globals": true
},
"extends": "airbnb",
"plugins": [
"babel",
"eslint-plugin-import",
"eslint-plugin-react",
"jest",
"jsx-a11y"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
"rules": {
"brace-style": 0,
"camelcase": 0,
"class-methods-use-this": 0,
"function-paren-newline": 0,
"max-classes-per-file": 0,
"guard-for-in": 1,
"import/extensions": 0,
"lines-between-class-members": 0,
"max-len": 0,
"no-await-in-loop": 0,
"no-bitwise": 0,
"no-cond-assign": 0,
"no-confusing-arrow": 0,
"no-console": 0,
"no-else-return": 0,
"no-multi-spaces": 0,
"no-nested-ternary": 0,
"no-param-reassign": 0,
"no-plusplus": 0,
"no-restricted-globals": 0,
"no-return-assign": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"no-useless-escape": 0,
"no-restricted-syntax": 1,
"object-curly-newline": 0,
"object-property-newline": 0,
"prefer-destructuring": 0,
"prefer-template": 0,
"spaced-comment": 0
}
}