forked from apolishch/node-bookshelf-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
46 lines (45 loc) · 1 KB
/
.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
40
41
42
43
44
45
46
{
"plugins": [ "nodeca" ],
"rules": {
"no-bitwise": 2,
"consistent-return": 0,
"camelcase": 0,
"curly": 2,
"eqeqeq": 2,
"guard-for-in": 2,
"wrap-iife": 2,
"nodeca/indent": [ 2, "spaces", 2 ],
"no-use-before-define": 2,
"no-caller": 2,
"no-empty": 2,
"no-new": 2,
"quotes": [2, "single", "avoid-escape"],
"no-undef": 2,
"no-unused-vars": 2,
"strict": 2,
"no-trailing-spaces": 2,
"semi": 2,
"new-cap": 2,
"no-cond-assign": 2,
"no-debugger": 2,
"no-eq-null": 2,
"no-eval": 2,
"no-unused-expressions": 2,
"global-strict": [2, "always"],
"no-iterator": 2,
"no-loop-func": 2,
"no-multi-str": 2,
"no-path-concat": 2,
"no-proto": 2,
"no-script-url": 2,
"no-mixed-spaces-and-tabs": 2,
"no-mixed-requires": 0,
"no-shadow": 2,
"dot-notation": 2,
"no-underscore-dangle": 2,
"space-after-keywords": [2, "always", { "checkFunctionKeyword": true } ]
},
"env": {
"node": true,
}
}