-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.eslintrc
More file actions
23 lines (23 loc) · 703 Bytes
/
.eslintrc
File metadata and controls
23 lines (23 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"rules": {
"no-unused-expressions": [0],
"no-underscore-dangle": [0],
"no-multi-spaces": [0],
"no-extra-parens": [2],
"no-unused-vars": [2],
"no-loop-func": [0],
"key-spacing": [0],
"max-len": [0],
"strict": [0],
"indent": [2, 2],
"quotes": [2, "single", "avoid-escape"],
"curly": [0],
"space-after-keywords": [2],
"space-before-blocks": [2],
"space-before-function-paren": [2],
},
"env": {
"mocha": true,
"node": true
}
}