-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc.js
54 lines (54 loc) · 1.18 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
module.exports = {
"env": {
"browser": true,
"es2022": true,
"greasemonkey": true,
},
"extends": [
"eslint:recommended",
],
"parserOptions": {
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"jsx": false,
"modules": false
},
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"no-console": "off",
"no-inner-declarations": "warn",
"no-global-assign": "warn",
"no-redeclare": "warn",
"no-self-assign": "warn",
"no-undef": "warn",
"no-useless-concat": "warn",
"no-useless-escape": "warn",
"no-unused-vars": "warn",
"no-var": "error",
"indent": [
"off",
4
],
"linebreak-style": [
2,
"unix"
],
"max-len": [
1,
100,
4,
{
"ignoreUrls": true,
"ignoreComments": true
}
],
"prefer-const": "error",
"one-var": [
"error",
"never"
]
}
};