-
Notifications
You must be signed in to change notification settings - Fork 466
/
.eslintrc.json
41 lines (41 loc) · 1.09 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
{
"env": {
"es6": true,
"node": true,
"browser": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"globals": {
"protobuf":"readonly",
"CryptoJS":"readonly",
"JSZip":"readonly",
"OAuth":"readonly",
"PDFDocument":"readonly",
"HakuNeko": "readonly",
"Engine": "readonly",
"EventListener": "readonly",
"Connector": "readonly",
"ClipboardConnector": "readonly",
"EXIF": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"semi": ["error", "always"],
"semi-spacing": "error",
"comma-spacing": "error",
"brace-style": "error",
"no-extra-parens": "error",
"space-before-blocks": "error",
//"object-curly-spacing": "error",
"indent": ["error", 4, { "SwitchCase": 1 }],
"no-trailing-spaces": "error",
"no-multiple-empty-lines": ["error", {"max": 1, "maxBOF": 0, "maxEOF": 0}],
"no-multi-spaces": "error"
}
}