forked from useshortcut/project-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
33 lines (33 loc) · 817 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
// Rules: http://eslint.org/docs/rules/
{
"extends": "eslint:recommended",
"rules": {
"comma-dangle": 2,
"comma-spacing": 2,
"curly": 2,
"dot-notation": 2,
"eol-last": 2,
"eqeqeq": 2,
"guard-for-in": 2,
"indent": [2, 2],
"key-spacing": [2, { "beforeColon": false }],
"no-console": 0,
"no-eval": 2,
"no-implied-eval": 2,
"no-multiple-empty-lines": [2, { "max": 1, "maxEOF": 1 }],
"no-trailing-spaces": 2,
"object-curly-spacing": [2, "always"],
"operator-linebreak": [2, "after"],
"quotes": [2, "single", "avoid-escape"],
"semi": [2, "always"],
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }]
},
"env": {
"browser": true,
"node": true
},
"globals": {
"_": true,
"moment": true
}
}