forked from arendjr/selectivity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
39 lines (39 loc) · 964 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
{ //0 = ignore, 1 = warning, 2 = error
"env": {
"browser": true,
"node": true,
"phantomjs": true
},
"globals": {
"window": false,
"event": true,
"Comment": true,
},
"rules": {
"camelcase": 2,
"curly": 2,
"dot-notation": 2,
"indent": [2, 4],
"eqeqeq": 2,
"max-len": [2, 100],
"max-params": [2, 6],
"new-cap": [2, {"capIsNew" : false}],
"no-alert": 2,
"no-caller": 2,
"no-console": 2,
"no-debugger": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-irregular-whitespace": 2,
"no-new": 2,
"no-proto": 2,
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unused-vars": 2,
"semi": [2, "always"],
"space-after-keywords": 2,
"strict": [2, "global"],
"quotes" : [2, "single"]
},
"extends": "eslint:recommended"
}