forked from raincatcher-beta/raincatcher-demo-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (31 loc) · 811 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
{
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"array-callback-return": "warn",
"brace-style": ["error", "1tbs"],
"complexity": ["warn", 20],
"eqeqeq": "error",
"guard-for-in": "error",
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"no-array-constructor": "error",
"no-console": "warn",
"no-lonely-if": "warn",
"no-loop-func": "warn",
"no-mixed-spaces-and-tabs": ["error"],
"no-nested-ternary": "error",
"no-spaced-func": "error",
"no-trailing-spaces": "error",
"semi": ["error", "always"],
"space-before-blocks": "error",
"space-before-function-paren": ["error", "never"],
"keyword-spacing": ["error"],
"curly": ["error", "all"]
},
"globals": {
"angular": false,
}
}