forked from lebab/lebab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
313 lines (308 loc) · 11.7 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
{
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"node": true,
"mocha": true,
"es6": true
},
"plugins": [
"no-null"
],
"rules": {
// # Possible errors
//
// disallow assignment in conditional expressions
"no-cond-assign": 2,
// disallow use of console.log()
"no-console": 2,
// disallow use of constant expressions in conditions
"no-constant-condition": 2,
// disallow control characters in regular expressions
"no-control-regex": 2,
// disallow use of debugger
"no-debugger": 2,
// disallow duplicate arguments in functions
"no-dupe-args": 2,
// disallow duplicate keys when creating object literals
"no-dupe-keys": 2,
// disallow a duplicate switch case label
"no-duplicate-case": 2,
// disallow empty block statements
"no-empty": 2,
// disallow the use of empty character classes in regular expressions
"no-empty-character-class": 2,
// disallow assigning to the exception in a catch block
"no-ex-assign": 2,
// disallow double-negation boolean casts in a boolean context
"no-extra-boolean-cast": 2,
// disallow unnecessary semicolons
"no-extra-semi": 2,
// disallow overwriting functions written as function declarations
"no-func-assign": 2,
// disallow function or variable declarations in nested blocks
"no-inner-declarations": 2,
// disallow invalid regular expression strings in the RegExp constructor
"no-invalid-regexp": 2,
// disallow irregular whitespace outside of strings and comments
"no-irregular-whitespace": 2,
// disallow negation of the left operand of an in expression
"no-negated-in-lhs": 2,
// disallow the use of object properties of the global object (Math and JSON) as functions
"no-obj-calls": 2,
// disallow multiple spaces in a regular expression literal
"no-regex-spaces": 2,
// disallow sparse arrays
"no-sparse-arrays": 2,
// Avoid code that looks like two expressions but is actually one
"no-unexpected-multiline": 2,
// disallow unreachable statements after a return, throw, continue, or break statement
"no-unreachable": 2,
// disallow comparisons with the value NaN
"use-isnan": 2,
// ensure that the results of typeof are compared against a valid string
"valid-typeof": 2,
// enforces that a for loop update clause moves the counter in the right direction.
"for-direction": 2,
// enforces that a return statement is present in property getters.
"getter-return": 2,
// disallow assignments that can lead to race conditions due to usage of await or yield
"require-atomic-updates": 2,
// # Best practices
//
// enforces return statements in callbacks of array’s methods
"array-callback-return": 2,
// require curly braces for all control statements
"curly": 2,
// require default case in switch statements
"default-case": 2,
// enforces consistent newlines before or after dots
"dot-location": [2, "property"],
// require foo.bar instead of foo['bar']
"dot-notation": 2,
// require the use of === and !==
"eqeqeq": 2,
// make sure for-in loops have an if statement
"guard-for-in": 2,
// disallow the use of alert, confirm, and prompt
"no-alert": 2,
// disallow use of arguments.caller or arguments.callee
"no-caller": 2,
// disallow lexical declarations in case clauses
"no-case-declarations": 2,
// disallow use of empty functions
"no-empty-function": 2,
// disallow use of empty destructuring patterns
"no-empty-pattern": 2,
// disallow use of eval()
"no-eval": 2,
// disallow unnecessary function binding
"no-extra-bind": 2,
// disallow fallthrough of case statements
"no-fallthrough": 2,
// disallow the use of leading or trailing decimal points in numeric literals
"no-floating-decimal": 2,
// disallow var and named functions in global scope
"no-implicit-globals": 2,
// disallow use of eval()-like methods
"no-implied-eval": 2,
// disallow this keywords outside of classes or class-like objects
"no-invalid-this": 2,
// disallow usage of __iterator__ property
"no-iterator": 2,
// disallow use of labeled statements
"no-labels": 2,
// disallow unnecessary nested blocks
"no-lone-blocks": 2,
// disallow creation of functions within loops
"no-loop-func": 2,
// disallow the use of magic numbers
"no-magic-numbers": [2, {"ignore": [-1, 0, 1, 2]}],
// disallow use of multiple spaces
"no-multi-spaces": 2,
// disallow use of multiline strings
"no-multi-str": 2,
// disallow use of the new operator when not part of an assignment or comparison
"no-new": 2,
// disallow use of new operator for Function object
"no-new-func": 2,
// disallows creating new instances of String,Number, and Boolean
"no-new-wrappers": 2,
// disallow use of octal literals
"no-octal": 2,
// disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
"no-octal-escape": 2,
// disallow usage of __proto__ property
"no-proto": 2,
// disallow declaring the same variable more than once
"no-redeclare": 2,
// disallow use of assignment in return statement
"no-return-assign": 2,
// disallow use of javascript: urls
"no-script-url": 2,
// disallow assignments where both sides are exactly the same
"no-self-assign": 2,
// disallow comparisons where both sides are exactly the same
"no-self-compare": 2,
// disallow use of the comma operator
"no-sequences": 2,
// disallow unmodified conditions of loops
"no-unmodified-loop-condition": 2,
// disallow usage of expressions in statement position
"no-unused-expressions": 2,
// disallow unnecessary .call() and .apply()
"no-useless-call": 2,
// disallow unnecessary concatenation of literals or template literals
"no-useless-concat": 2,
// disallow use of the void operator
"no-void": 2,
// disallow use of the with statement
"no-with": 2,
// require use of the second argument for parseInt()
"radix": 2,
// require immediate function invocation to be wrapped in parentheses
"wrap-iife": 2,
// # Variables
//
// disallow the catch clause parameter name being the same as a variable in the outer scope
"no-catch-shadow": 2,
// disallow deletion of variables
"no-delete-var": 2,
// disallow declaration of variables already declared in the outer scope
"no-shadow": 2,
// disallow shadowing of names such as arguments
"no-shadow-restricted-names": 2,
// disallow use of undeclared variables
"no-undef": 2,
// disallow use of undefined when initializing variables
"no-undef-init": 2,
// disallow declaration of variables that are not used in the code
"no-unused-vars": 2,
// # Stylistic issues
//
// enforce no spacing inside array brackets
"array-bracket-spacing": 2,
// enforce spaces inside of single line blocks
"block-spacing": 2,
// Enforce one true brace style
"brace-style": [2, "stroustrup"],
// require camel case names
"camelcase": 2,
// require space after comma, no space before
"comma-spacing": 2,
// require commas at end of line (no comma-first style)
"comma-style": 2,
// disallow spaces inside computed properties
"computed-property-spacing": 2,
// require file to end with a newline
"eol-last": 2,
// require indentation of 2 spaces
"indent": [2, 2],
// require space after colon: no space before
"key-spacing": 2,
// enforce space before and after keywords
"keyword-spacing": 2,
// require LF line breaks
"linebreak-style": [2, "unix"],
// require a capital letter for constructors
"new-cap": 2,
// disallow the omission of parentheses when invoking a constructor with no arguments
"new-parens": 2,
// disallow use of the Array constructor
"no-array-constructor": 2,
// disallow use of bitwise operators
"no-bitwise": 2,
// disallow use of the continue statement
"no-continue": 2,
// disallow if as the only statement in an else block
"no-lonely-if": 2,
// disallow negated if-else conditions
"no-negated-condition": 2,
// disallow nested ternary expressions
"no-nested-ternary": 2,
// disallow the use of the Object constructor
"no-new-object": 2,
// disallow space between function identifier and application
"no-spaced-func": 2,
// disallow trailing whitespace at the end of lines
"no-trailing-spaces": 2,
// disallow _dangling_ underscores in identifiers
"no-underscore-dangle": 2,
// disallow the use of ternary operators when a simpler alternative exists
"no-unneeded-ternary": [2, {"defaultAssignment": true}],
// disallow whitespace before properties
"no-whitespace-before-property": 2,
// require or disallow padding inside curly braces
"object-curly-spacing": 2,
// disallow one declaration declaring multiple variables
"one-var": [2, "never"],
// require assignment operator shorthand where possible
"operator-assignment": 2,
// enforce operators to be placed before line breaks
"operator-linebreak": 2,
// disallow empty lines at the beginning and end of blocks
"padded-blocks": [2, "never"],
// require use of 'single-quotes'
"quotes": [2, "single"],
// require semicolons
"semi": 2,
// enforce no space before; and space after semicolons
"semi-spacing": 2,
// require a space before blocks
"space-before-blocks": 2,
// disallow a space before function opening parenthesis
"space-before-function-paren": [2, "never"],
// disallow spaces inside parentheses
"space-in-parens": 2,
// require spaces around operators
"space-infix-ops": 2,
// spaces before/after unary operators (required for words, disallowed for nonwords)
"space-unary-ops": 2,
// require a space immediately following the // or /* in a comment
"spaced-comment": 2,
// prefer the use of object spread over Object.assign
"prefer-object-spread": 2,
// require an empty line between class members
"lines-between-class-members": 2,
// # ECMAScript 6
//
// require space before/after arrow function's arrow
"arrow-spacing": 2,
// verify calls of super() in constructors
"constructor-super": 2,
// disallow modifying variables of class declarations
"no-class-assign": 2,
// disallow modifying variables that are declared using const
"no-const-assign": 2,
// disallow duplicate name in class members
"no-dupe-class-members": 2,
// disallow use of the new operator with the Symbol object
"no-new-symbol": 2,
// disallow use of this/super before calling super() in constructors
"no-this-before-super": 2,
// disallow unnecessary constructor
"no-useless-constructor": 2,
// Only allow let/const
"no-var": 2,
// require method shorthand syntax for object literals
"object-shorthand": [2, "methods"],
// suggest using arrow functions as callbacks
"prefer-arrow-callback": 2,
// suggest using const declaration for variables that are never reassigned after declared
"prefer-const": 2,
// suggest using the rest parameters instead of arguments
"prefer-rest-params": 2,
// suggest using the spread operator instead of .apply()
"prefer-spread": 2,
// suggest using template literals instead of strings concatenation
"prefer-template": 2,
// disallow generator functions that do not have yield
"require-yield": 2,
// disallow spaces inside template ${curly block}
"template-curly-spacing": 2,
// Prefer undefined to null
"no-null/no-null": 2,
}
}