forked from Kruithne/wow.export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
42 lines (41 loc) · 842 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
{
"root": true,
"ignorePatterns": ["lib/", "src/js/3D/lib/", "bin/"],
"parserOptions": {
"ecmaVersion": 2020
},
"globals": {
"Vue": true,
"THREE": true,
"nw": true,
"BUILD_RELEASE": true,
"chrome": true,
"crash": true,
"getErrorDump": true,
"BigInt": true
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"rules": {
/* Custom */
"space-before-blocks": "error",
"curly": [2, "multi-or-nest", "consistent"],
"no-trailing-spaces": "off",
"indent": [
"error",
"tab",
{ "SwitchCase": 1 }
],
"keyword-spacing": "error"
},
"plugins": [
"vue"
],
"extends": [
"plugin:vue/base",
"eslint:recommended"
]
}