UNPKG

1.01 kBJSONView Raw
1{
2 "extends": "eslint:recommended",
3 "rules": {
4 "curly": [2, "multi-line"],
5 "no-console": 0,
6 "no-path-concat": 2,
7 "handle-callback-err": 2,
8 "no-use-before-define": [2, "nofunc"],
9 "no-shadow-restricted-names": 2,
10 "block-scoped-var": 2,
11 "dot-notation": 2,
12 "eqeqeq": [2, "allow-null"],
13 "no-else-return": 1,
14 "no-extend-native": 2,
15 "no-extra-bind": 2,
16 "no-implied-eval": 2,
17 "no-lone-blocks": 2,
18 "no-loop-func": 2,
19 "no-multi-spaces": 2,
20 "no-multi-str": 2,
21 "no-native-reassign": 2,
22 "no-new-wrappers": 2,
23 "no-redeclare": 2,
24 "no-return-assign": 2,
25 "no-throw-literal": 2,
26 "no-unused-expressions": [2, {
27 "allowShortCircuit": true,
28 "allowTernary": true
29 }],
30 "no-useless-call": 2,
31 "no-useless-concat": 2,
32 "no-with": 2,
33 "radix": 2,
34 "no-self-compare": 2,
35 "no-unused-vars": [2, {
36 "vars": "all",
37 "args": "none"
38 }],
39 "strict": [2, "global"]
40 },
41 "env": {
42 "node": true
43 }
44}
\No newline at end of file