-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
35 lines (35 loc) · 850 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
33
34
35
{
"extends": "eslint-config-airbnb",
"globals": {
"$": false,
"document": false,
"IPC": false,
"_GLOBAL_APP_CONSTANTS": false,
"_GLOBAL_CRUCIBLE_SERVER_LIST": true,
"_GLOBAL_REVIEWER_LIST": true,
"_GLOBAL_USER": true
},
"rules": {
"comma-dangle": ["error", "never"],
"eol-last": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": [2, {
"ignore": ["electron"]
}],
"linebreak-style": 0,
"max-len": [1, 120, 2, {
"ignoreComments": true,
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}],
"no-console": 0,
"no-plusplus": [1, {
"allowForLoopAfterthoughts": true
}],
"object-shorthand": 0,
"quotes": ["error", "double"]
}
}