forked from manga-download/hakuneko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
35 lines (35 loc) · 903 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
{
"env": {
"es6": true,
"node": true,
"browser": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"globals": {
"protobuf":"readonly",
"CryptoJS":"readonly",
"JSZip":"readonly",
"OAuth":"readonly",
"jsPDF":"readonly",
"HakuNeko": "readonly",
"Engine": "readonly",
"EventListener": "readonly",
"Connector": "readonly",
"ClipboardConnector": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"semi": ["error", "always"],
"no-extra-parens": "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"
}
}