-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
47 lines (47 loc) · 821 Bytes
/
.eslintrc
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
44
45
46
47
{
"env": {
"node": true,
"commonjs": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": "eslint:recommended",
"rules": {
"no-console": "off",
"semi": "error",
"brace-style": "error",
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"quotes": [
"error",
"single"
],
"space-before-blocks": "error",
"space-in-parens": "error",
"space-unary-ops": "error",
"space-infix-ops": "error",
"spaced-comment": "error",
"max-len": [
"error",
120
],
"array-bracket-spacing": [
"error",
"never"
],
"block-spacing": "error",
"dot-location": [
"error",
"property"
],
"dot-notation": "error",
"eqeqeq": "error"
}
}