-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
30 lines (30 loc) · 1.02 KB
/
.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
{
"rules": {
"brace-style": [ 2, "1tbs", { "allowSingleLine": true } ],
"block-spacing": [ 2, "always" ],
"comma-style": [ 2, "last" ],
"eol-last": [ 2, "unix" ],
"indent": [ 2, 2 ],
"key-spacing": [ 2, { "beforeColon": false, "afterColon": true } ],
"keyword-spacing": [ 2 ],
"linebreak-style": [ 2, "unix" ],
"new-cap": [ 2 ],
"new-parens": [ 2 ],
"no-console": [ 0 ],
"no-trailing-spaces": [ 2 ],
"object-curly-spacing": [ 2, "always" ],
"quotes": [ 2, "double" ],
"semi": [ 2, "always" ],
"semi-spacing": [ 2, { "before": false, "after": true } ],
"space-before-blocks": [ 2, "always" ],
"space-before-function-paren": [ 2, "never" ],
"space-in-parens": [ 2, "never" ],
"space-infix-ops": [ 2 ],
"space-unary-ops": [2, { "words": true, "nonwords": false }]
},
"env": {
"browser": true,
"commonjs": true
},
"extends": "eslint:recommended"
}