-
Notifications
You must be signed in to change notification settings - Fork 70
/
.eslintrc.json
43 lines (43 loc) · 879 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
43
{
"extends": ["eslint:recommended"],
"plugins": ["node"],
"root": true,
"ignorePatterns": [
"chat/app",
"public",
"*.html",
"*.scss",
"*.css",
"*.json",
"*.spec.js"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
// root env (node scripts, including webpack)
"env": {
"es6": true,
"browser": false,
"node": true,
"commonjs": true,
"jquery": false
},
// rules for syntax errors
"rules": {
"no-var": "error",
"prefer-const": [
"error",
{ "destructuring": "any", "ignoreReadBeforeAssign": false }
],
"no-multi-assign": "error",
"one-var": ["error", "never"],
"quotes": [
"error",
"single",
{ "avoidEscape": true, "allowTemplateLiterals": true }
],
// console is OK for node/webpack so far
"no-console": "off"
}
}