-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
126 lines (115 loc) · 3.56 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
module.exports = {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"classes": true,
"experimentalObjectRestSpread": true,
"modules": true
},
"sourceType": "module"
},
"settings": {
},
"env": {
"browser": true,
"es6": true,
"jest/globals": true,
"node": true
},
"plugins": [
"import",
"jest",
],
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:jest/recommended",
],
"rules": {
// Possible Errors
"no-console": 0,
"no-extra-parens": [
"error",
"all",
{
"nestedBinaryExpressions": false,
"returnAssign": false
}
],
// Best Practices
"accessor-pairs": ["error", {"getWithoutSet": true}],
"block-scoped-var": "error",
"consistent-return": "error",
"no-alert": "error",
"no-div-regex": "off",
"no-else-return": "off",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-floating-decimal": "error",
"no-implicit-coercion": "off",
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-iterator": "error",
"no-labels": ["error", {"allowSwitch": true}],
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-multi-spaces": "off",
"no-multi-str": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-wrappers": "error",
"no-octal-escape": "error",
"no-proto": "error",
"no-return-assign": "error",
"no-return-await": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unused-expressions": "error",
"no-unused-vars": ["error", { "ignoreRestSiblings": true }],
"no-useless-call": "error",
"no-useless-concat": "error",
"no-useless-return": "error",
"no-void": "error",
"no-with": "error",
"radix": "error",
"require-await": "error",
"semi": ["error", "always"],
"wrap-iife": "error",
// Variables
"no-catch-shadow": "error",
"no-label-var": "error",
"no-shadow": "error",
"no-shadow-restricted-names": "error",
"no-undef-init": "error",
"no-use-before-define": "error",
// Promises
"promise/avoid-new": "off",
"promise/always-return": "off",
// Node.js
"handle-callback-err": "error",
"no-mixed-requires": "error",
"no-new-require": "error",
"no-path-concat": "error",
"no-process-exit": "error",
// Jest
// It is very important not to allow tests to be disabled. This can happen
// easily during development, and this rule ensures that temporarily disabled
// tests are not going to stay disabled in production.
"jest/no-disabled-tests": "error",
// ECMAScript
"arrow-body-style": ["error", "as-needed"],
"arrow-parens": ["error", "as-needed"],
"arrow-spacing": "error",
"no-duplicate-imports": "error",
"no-useless-computed-key": "error",
"no-useless-constructor": "error",
"no-useless-rename": "error",
"no-var": "error",
"prefer-const": "off",
"prefer-template": "off",
"no-prototype-builtins": "off",
}
};