-
Notifications
You must be signed in to change notification settings - Fork 22
/
.eslintrc
97 lines (89 loc) · 2.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"extends": [
"eslint:recommended"
],
"env": {
"node": true,
"es6": true,
"jest": true
},
"globals": {
"request": false,
"agent": false
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"rules": {
"no-misleading-character-class": "error",
"no-template-curly-in-string": "error",
"no-console": ["warn", { "allow": ["warn", "error", "info"] }],
"linebreak-style": ["error", "unix"],
// Best practices
"array-callback-return": "error",
"default-case": "error",
"eqeqeq": "error",
"no-eq-null": "error",
"no-param-reassign": "error",
"no-return-assign": "error",
"no-return-await": "error",
"no-unused-expressions": "error",
"require-await": "error",
"radix": "error",
// Variables
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"no-shadow-restricted-names": "error",
// Style
"array-bracket-spacing": "error",
"block-spacing": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"comma-spacing": ["error", { "before": false, "after": true }],
"comma-style": ["error", "last"],
"computed-property-spacing": ["error", "never"],
"eol-last": ["error", "always"],
"indent": ["error", 4, { "SwitchCase": 1 }],
"jsx-quotes": ["error", "prefer-double"],
"key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
"keyword-spacing": "error",
"max-len": ["error", { "code": 160 }],
"new-parens": "error",
"no-mixed-operators": "error",
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0 }],
"no-nested-ternary": "error",
"no-trailing-spaces": "error",
"no-tabs": "error",
"object-curly-spacing": ["error", "always"],
"prefer-object-spread": "error",
"quotes": ["error", "double", { "avoidEscape": true }],
"semi": ["error", "always", { "omitLastInOneLineBlock": true }],
"semi-spacing": ["error", { "before": false, "after": true }],
"space-before-blocks": ["error", "always"],
"space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": ["error", {
"words": true,
"nonwords": false
}],
"spaced-comment": ["error", "always", { "exceptions": ["-"] }],
"switch-colon-spacing": ["error", {
"after": true,
"before": false
}],
"brace-style": ["error", "1tbs"],
// ES6
"arrow-spacing": "error",
"arrow-body-style": ["error", "as-needed"],
"arrow-parens": ["error", "always"],
"no-duplicate-imports": "error",
"no-var": "error",
"prefer-const": ["error", { "destructuring": "all" }],
"prefer-template": "error",
"template-curly-spacing": "error"
}
}