-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
63 lines (63 loc) · 1.62 KB
/
index.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
62
63
module.exports = {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2015
},
"env": {
"es6": true,
"mocha": true,
"node": true
},
"rules": {
"array-bracket-spacing": "error",
"arrow-body-style": ["error", "always"],
"arrow-parens": "error",
"brace-style": "error",
"camelcase": "error",
"comma-dangle": "off",
"comma-spacing": "error",
"comma-style": "error",
"computed-property-spacing": "error",
"curly": "error",
"dot-location": ["error", "property"],
"dot-notation": "error",
"eol-last": "error",
"eqeqeq": "error",
"guard-for-in": "error",
"indent": ["error", 4, {
"SwitchCase": 1,
"VariableDeclarator": 0
}],
"key-spacing": "error",
"keyword-spacing": ["error", {
"after": true,
"before": true
}],
"no-bitwise": "error",
"no-caller": "error",
"no-console": "error",
"no-const-assign": "error",
"no-else-return": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-lonely-if": "error",
"no-loop-func": "error",
"no-multi-spaces": "error",
"no-trailing-spaces": "error",
"no-var": "error",
"prefer-const": "error",
"quotes": ["error", "single", "avoid-escape"],
"semi": "error",
"space-before-blocks": "error",
"space-before-function-paren": "error",
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": ["error", {
"nonwords": false,
"words": true
}],
"strict": ["error", "global"],
"template-curly-spacing": ["error", "always"],
"yoda": "error"
}
};