-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.eslintrc.json
More file actions
79 lines (79 loc) · 1.69 KB
/
.eslintrc.json
File metadata and controls
79 lines (79 loc) · 1.69 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
{
"env": {
"browser": true,
"es2021": true
},
"extends": "airbnb-base",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-useless-escape": "off",
"linebreak-style": 0,
"no-debugger":"off",
"jsx-quotes": [
"error",
"prefer-double"
],
"max-lines": [
"warn",
{
"max": 1250,
"skipBlankLines": true,
"skipComments": true
}
],
"max-len": [
"warn",
{
"code": 1120,
"tabWidth": 4,
"ignoreComments": true,
"ignoreTrailingComments": true,
"ignoreUrls": true
}
],
"no-param-reassign": 0,
"no-multiple-empty-lines": [
"error",
{
"max": 2,
"maxEOF": 0
}
],
"no-use-before-define": [
"error",
{
"functions": false
}
],
"no-unused-vars": "warn",
"no-underscore-dangle": "off",
"no-plusplus": "off",
"camelcase": "off",
"import/newline-after-import": [
"error",
{
"count": 2
}
],
"import/no-unresolved": "error",
"import/no-cycle": "off",
"import/no-unused-modules": "off",
"import/no-commonjs": "error",
"import/no-nodejs-modules": "warn",
"import/first": "warn",
"import/exports-last": "error",
"import/no-duplicates": "warn",
"import/no-namespace": "off",
"import/order": "warn",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"import/no-anonymous-default-export": "error",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off"
}
}