forked from wikimedia-gadgets/afc-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
51 lines (51 loc) · 964 Bytes
/
.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
51
{
"extends": "wikimedia",
"plugins": [
"jsdoc"
],
"env": {
"browser": true,
"jquery": true
},
"globals": {
"AFCH": true,
"Hogan": false,
"importScript": false,
"mediaWiki": true,
"mw": true,
"OO": false
},
"rules": {
"camelcase": 0,
"eqeqeq": 0,
"jsdoc/check-param-names": 0,
"jsdoc/check-tag-names": 0,
"jsdoc/no-undefined-types": 0,
"jsdoc/require-param-type": 0,
"jsdoc/require-returns": 0,
"jsdoc/require-returns-check": 0,
"jsdoc/valid-types": 0,
"max-len": 0,
"max-statements-per-line": 0,
"no-console": 0,
"no-global-assign": 0,
"no-implicit-globals": 0,
"no-new": 0,
"no-prototype-builtins": 0,
"no-shadow": 0,
"no-undef": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"no-useless-concat": 0,
"no-useless-escape": 0,
"one-var": 0,
"spaced-comment": 0,
"vars-on-top": 0
},
"settings": {
"jsdoc": {
"ignoreInternal": true
}
}
}