-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc
More file actions
35 lines (35 loc) · 770 Bytes
/
.eslintrc
File metadata and controls
35 lines (35 loc) · 770 Bytes
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
{
"parser": "esprima-fb",
"rules": {
"block-scoped-var": [2],
"complexity": [2, 3],
"default-case": [2],
"eol-last": [0],
"eqeqeq": [2],
"guard-for-in": [2],
"key-spacing": [0],
"max-depth": [2, 2],
"max-len": [2, 130, 4],
"max-params": [2, 4],
"no-bitwise": [2],
"no-div-regex": [2],
"no-else-return": [2],
"no-trailing-spaces": [0],
"no-underscore-dangle": [0],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"no-use-before-define": [2, "nofunc"],
"quotes": [2, "single"],
"semi": [2, "always"],
"valid-typeof": [2]
},
"env": {
"jasmine": true,
"browser": true,
"node": true
},
"globals": {
"require": false,
"define": false
},
"plugins": []
}