-
Notifications
You must be signed in to change notification settings - Fork 81
/
.eslintrc.json
55 lines (55 loc) · 1.36 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
51
52
53
54
55
{
"env": {
"node": true
},
"extends": "airbnb",
"globals": {
"index": true,
"has": true,
"selfId": true,
"vaebId": true,
"botDir": true,
"Util": true,
"Data": true,
"Trello": true,
"Admin": true,
"Music": true,
"Music2": true,
"Cmds": true,
"Events": true,
"Discord": true,
"client": true,
"colAction": true,
"colUser": true,
"colMessage": true,
"colCommand": true,
"colGreen": true,
"colBlue": true,
"cmd": true, "args": true, "msgObj": true, "speaker": true, "channel": true, "guild": true
},
"rules": {
"default-case": "off",
"eqeqeq": "off",
"import/no-dynamic-require": "off",
"indent": ["error", 4],
"func-names": "off",
"global-require": "off",
"jsx-a11y/href-no-hash": "off",
"max-len": "off",
"no-bitwise": "off",
"no-cond-assign": "off",
"no-console": "off",
"no-continue": "off",
"no-control-regex": "off",
"no-eval": "off",
"no-irregular-whitespace": "off",
"no-lonely-if": "off",
"no-mixed-operators": "off",
"no-multi-spaces": ["error", {"ignoreEOLComments": true}],
"no-param-reassign": "off",
"no-plusplus": "off",
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
"quote-props": "off"
}
}