forked from ZiraDiscord/Zira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
45 lines (45 loc) · 1.08 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
{
"extends": "airbnb",
"parserOptions": {
"sourceType": "script"
},
"rules": {
"valid-jsdoc": [
"error",
{
"requireReturn": false,
"requireReturnDescription": false,
"preferType": {
"String": "string",
"Number": "number",
"Boolean": "boolean",
"Function": "function",
"object": "Object",
"date": "Date",
"error": "Error"
},
"prefer": {
"return": "returns"
}
}
],
"indent": "off",
"linebreak-style": "off",
"operator-linebreak": "off",
"nonblock-statement-body-position": "off",
"strict": ["error", "safe"],
"no-console": "off",
"no-plusplus": "off",
"max-len": "off",
"class-methods-use-this": "off",
"arrow-parens": "off",
"no-restricted-globals": "off",
"no-param-reassign": "off",
"no-unused-expressions": "off",
"no-await-in-loop": "off",
"array-callback-return": "off",
"no-underscore-dangle": "off",
"no-loop-func": "off",
"no-restricted-syntax": "off"
}
}