forked from the1812/Bilibili-Evolved
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
32 lines (32 loc) · 761 Bytes
/
.eslintrc
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
{
"extends": "defaults/configurations/eslint",
"parser": "babel-eslint",
"env": {
"amd": true,
"browser": true,
"jquery": true,
"node": true,
"es6": true,
"worker": true
},
"rules": {
"camelcase": 0,
"new-cap": ["warn", {
"capIsNewExceptionPattern": "GM_*"
}],
"eqeqeq": 2,
"comma-dangle": 0,
"no-console": 0,
"no-debugger": 0,
"no-extra-semi": 1,
"no-extra-parens": 1,
"no-irregular-whitespace": 0,
"no-inner-declarations": 0,
"no-undef": 0,
"no-unused-vars": 0,
"no-underscore-dangle": 1,
"semi": 1,
"semi-spacing": 1,
"valid-jsdoc": 0
}
}