-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.js
61 lines (61 loc) · 1.57 KB
/
.eslintrc.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = {
"rules": {
"camelcase": 0,
"comma-dangle": [2, "never"],
"comma-spacing": [2, { "before": false, "after": true }],
"consistent-return": 0,
"curly": 0,
"default-case": 0,
"eqeqeq": [2, "smart"],
"func-names": 0,
"guard-for-in": 2,
"indent": [2, 2, { "SwitchCase": 1 }],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": [2, { "before": true, "after": true }],
"max-len": 0,
"new-cap": [2, { "newIsCapExceptions": ["acl.memoryBackend", "acl"] }],
"no-bitwise": 0,
"no-caller": 2,
"no-console": 1,
"no-else-return": 0,
"no-empty-class": 0,
"no-multi-spaces": 2,
"no-param-reassign": 0,
"no-shadow": 0,
"no-spaced-func": 2,
"no-throw-literal": [0, "never"],
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unneeded-ternary": 2,
"no-unreachable": 2,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-unused-vars": 2,
"no-use-before-define": [1, "nofunc"],
"no-var": 0,
"object-curly-spacing": [2, "always"],
"one-var": [0, "never"],
"one-var-declaration-per-line": [0, "always"],
"padded-blocks": 0,
"space-before-function-paren": 0,
"space-in-parens": [2, "never"],
"strict": 0,
"quote-props": 0,
"quotes": [1, "single"],
"wrap-iife": [2, "outside"],
"vars-on-top": 0
},
"globals": {
"Promise": true,
"_": true,
"sails": true
},
"env": {
"es6": true,
"node": true,
"browser": true,
"jasmine": true,
"mocha": true,
"jquery": true,
}
}