-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
41 lines (41 loc) · 869 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
{
"extends": ["eslint:recommended", "google"],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true,
"jest/globals": true,
"node": true
},
"plugins": [
"html",
"jest"
],
"rules": {
"max-len": ["error", {
"ignoreTemplateLiterals": true,
"ignoreStrings": true,
"ignoreRegExpLiterals": true
}],
"no-var": "error",
"require-jsdoc": "off",
"arrow-parens": "off",
"no-console": "off",
"new-cap": "off",
"indent": [2, 2],
"brace-style": [2, "1tbs"],
"no-loop-func": "error",
"no-await-in-loop": "error",
"no-useless-call": "error",
"padded-blocks": ["error", {
"blocks": "never",
"classes": "never",
"switches": "never"
}],
"space-in-parens": "error",
"singleQuote": true
}
}