@koffeine/eslint-config 23.0.0 → 23.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/index.js +7 -7
- package/CHANGELOG.md +0 -580
package/README.md
CHANGED
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -164,11 +164,11 @@ module.exports = {
|
|
|
164
164
|
'no-restricted-imports': 'off',
|
|
165
165
|
'no-restricted-properties': 'off',
|
|
166
166
|
'no-restricted-syntax': 'off',
|
|
167
|
-
'no-return-assign':
|
|
167
|
+
'no-return-assign': 'off',
|
|
168
168
|
'no-return-await': 'error',
|
|
169
169
|
'no-script-url': 'error',
|
|
170
170
|
'no-sequences': [ 'error', { allowInParentheses: false } ],
|
|
171
|
-
'no-shadow': [ 'error', { builtinGlobals:
|
|
171
|
+
'no-shadow': [ 'error', { builtinGlobals: false, hoist: 'all' } ],
|
|
172
172
|
'no-shadow-restricted-names': 'error',
|
|
173
173
|
'no-ternary': 'off',
|
|
174
174
|
'no-throw-literal': 'error',
|
|
@@ -278,16 +278,16 @@ module.exports = {
|
|
|
278
278
|
{
|
|
279
279
|
beforeBlockComment: true,
|
|
280
280
|
afterBlockComment: false,
|
|
281
|
-
beforeLineComment:
|
|
281
|
+
beforeLineComment: false,
|
|
282
282
|
afterLineComment: false,
|
|
283
283
|
allowBlockStart: true,
|
|
284
|
-
allowBlockEnd:
|
|
284
|
+
allowBlockEnd: true,
|
|
285
285
|
allowObjectStart: true,
|
|
286
|
-
allowObjectEnd:
|
|
286
|
+
allowObjectEnd: true,
|
|
287
287
|
allowArrayStart: true,
|
|
288
|
-
allowArrayEnd:
|
|
288
|
+
allowArrayEnd: true,
|
|
289
289
|
allowClassStart: true,
|
|
290
|
-
allowClassEnd:
|
|
290
|
+
allowClassEnd: true,
|
|
291
291
|
applyDefaultIgnorePatterns: true
|
|
292
292
|
}
|
|
293
293
|
],
|
package/CHANGELOG.md
DELETED
|
@@ -1,580 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## [Unreleased]
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
## [23.0.0] - 2021-10-16
|
|
13
|
-
|
|
14
|
-
### Changed
|
|
15
|
-
|
|
16
|
-
- Enabled array-bracket-newline rule with `'consistent'`
|
|
17
|
-
- Enabled arrow-body-style rule with `'as-needed', { requireReturnForObjectLiteral: false }`
|
|
18
|
-
- Updated brace-style rule with `'1tbs', { allowSingleLine: false }`
|
|
19
|
-
- Updated comma-dangle rule with `'only-multiline'`
|
|
20
|
-
- Enabled constructor-super rule
|
|
21
|
-
- Updated default-case rule with `{ commentPattern: '/^no default$/iu' }`
|
|
22
|
-
- Enabled for-direction rule
|
|
23
|
-
- Enabled func-name-matching rule with `'always', { considerPropertyDescriptor: true, includeCommonJSModuleExports: false }`
|
|
24
|
-
- Enabled function-call-argument-newline rule with `'consistent'`
|
|
25
|
-
- Updated lines-around-comment rule with `{ beforeBlockComment: true, afterBlockComment: false, beforeLineComment: true, afterLineComment: false, allowBlockStart: true, allowBlockEnd: false, allowObjectStart: true, allowObjectEnd: false, allowArrayStart: true, allowArrayEnd: false, allowClassStart: true, allowClassEnd: false, applyDefaultIgnorePatterns: true }`
|
|
26
|
-
- Enabled no-cond-assign rule with `'except-parens'`
|
|
27
|
-
- Updated no-extra-parens rule with `'all', { conditionalAssign: false, returnAssign: true, nestedBinaryExpressions: false, ignoreJSX: 'none', enforceForArrowConditionals: true, enforceForSequenceExpressions: true, enforceForNewInMemberExpressions: false, enforceForFunctionPrototypeMethods: false }`
|
|
28
|
-
- Updated no-fallthrough rule with `{ commentPattern: 'break[\\s\\w]*omitted' }`
|
|
29
|
-
- Enabled no-floating-decimal rule
|
|
30
|
-
- Updated no-irregular-whitespace rule with `{ skipStrings: false, skipComments: false, skipRegExps: false, skipTemplates: false }`
|
|
31
|
-
- Enabled no-lonely-if rule
|
|
32
|
-
- Updated no-multi-spaces rule with `{ ignoreEOLComments: false, exceptions: { Property: true, BinaryExpression: false, VariableDeclarator: true, ImportDeclaration: false } }`
|
|
33
|
-
- Updated no-multiple-empty-lines rule with `{ max: 2, maxEOF: 1, maxBOF: 0 }`
|
|
34
|
-
- Enabled no-prototype-builtins rule
|
|
35
|
-
- Enabled no-return-assign rule with `'always'`
|
|
36
|
-
- Updated no-shadow rule with `{ builtinGlobals: true, hoist: 'all' }`
|
|
37
|
-
- Enabled no-throw-literal rule
|
|
38
|
-
- Updated no-unneeded-ternary rule with `{ defaultAssignment: true }`
|
|
39
|
-
- Updated no-unused-vars rule with `{ vars: 'all', args: 'all', ignoreRestSiblings: false, caughtErrors: 'all' }`
|
|
40
|
-
- Updated no-useless-computed-key rule with `{ enforceForClassMembers: true }`
|
|
41
|
-
- Enabled object-curly-newline rule with `{ consistent: true }`
|
|
42
|
-
- Enabled object-shorthand rule with `'always', { avoidQuotes: false, ignoreConstructors: false, avoidExplicitReturnArrows: true }`
|
|
43
|
-
- Updated prefer-arrow-callback rule with `{ allowNamedFunctions: false, allowUnboundThis: false }`
|
|
44
|
-
- Enabled prefer-const rule with `{ destructuring: 'all', ignoreReadBeforeAssign: false }`
|
|
45
|
-
- Enabled prefer-object-spread rule
|
|
46
|
-
- Updated space-before-function-paren rule with `{ anonymous: 'never', named: 'never', asyncArrow: 'always' }`
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [22.0.1] - 2021-10-14
|
|
50
|
-
|
|
51
|
-
### Changed
|
|
52
|
-
|
|
53
|
-
- Updated eslint to 8.0.1
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
## [22.0.0] - 2021-10-12
|
|
57
|
-
|
|
58
|
-
### Changed
|
|
59
|
-
|
|
60
|
-
- Updated eslint to 8.0.0
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## [21.0.0] - 2021-10-09
|
|
64
|
-
|
|
65
|
-
### Changed
|
|
66
|
-
|
|
67
|
-
- Updated eol-last rule with `'always'`
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
## [20.0.0] - 2021-10-07
|
|
71
|
-
|
|
72
|
-
### Changed
|
|
73
|
-
|
|
74
|
-
- Updated func-style rule with `'expression', { allowArrowFunctions: true }`
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
## [19.1.3] - 2021-08-07
|
|
78
|
-
|
|
79
|
-
### Changed
|
|
80
|
-
|
|
81
|
-
- Updated eslint to 7.32.0
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
## [19.1.2] - 2021-05-13
|
|
85
|
-
|
|
86
|
-
### Changed
|
|
87
|
-
|
|
88
|
-
- Updated eslint to 7.26.0
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## [19.1.1] - 2021-04-27
|
|
92
|
-
|
|
93
|
-
### Changed
|
|
94
|
-
|
|
95
|
-
- Updated eslint to 7.25.0
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## [19.1.0] - 2021-04-20
|
|
99
|
-
|
|
100
|
-
### Changed
|
|
101
|
-
|
|
102
|
-
- Updated func-style rule with `'declaration', { allowArrowFunctions: true }`
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
## [19.0.0] - 2021-04-11
|
|
106
|
-
|
|
107
|
-
### Changed
|
|
108
|
-
|
|
109
|
-
- Updated eslint to 7.24.0
|
|
110
|
-
- Updated no-implicit-coercion rule with `{ boolean: true, number: true, string: true, disallowTemplateShorthand: true }`
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## [18.0.0] - 2021-04-06
|
|
114
|
-
|
|
115
|
-
### Changed
|
|
116
|
-
|
|
117
|
-
- Updated eslint to 7.23.0
|
|
118
|
-
- Updated no-sequences rule with `{ allowInParentheses: false }`
|
|
119
|
-
- Updated no-unused-expressions rule with `{ allowShortCircuit: false, allowTernary: false, allowTaggedTemplates: false, enforceForJSX: false }`
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
## [17.0.0] - 2021-01-16
|
|
123
|
-
|
|
124
|
-
### Changed
|
|
125
|
-
|
|
126
|
-
- Updated eslint to 7.18.0
|
|
127
|
-
- Enabled no-nonoctal-decimal-escape rule
|
|
128
|
-
- Enabled no-unsafe-optional-chaining rule with `{ disallowArithmeticOperators: true }`
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
## [16.0.2] - 2020-10-07
|
|
132
|
-
|
|
133
|
-
### Changed
|
|
134
|
-
|
|
135
|
-
- Updated eslint to 7.10.0
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [16.0.1] - 2020-09-15
|
|
139
|
-
|
|
140
|
-
### Changed
|
|
141
|
-
|
|
142
|
-
- Updated eslint to 7.9.0
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
## [16.0.0] - 2020-09-09
|
|
146
|
-
|
|
147
|
-
### Changed
|
|
148
|
-
|
|
149
|
-
- Updated eslint to 7.8.1
|
|
150
|
-
- Updated no-underscore-dangle rule with `{ allowAfterThis: false, allowAfterSuper: false, allowAfterThisConstructor: false, enforceInMethodNames: true, allowFunctionParams: false }`
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
## [15.0.2] - 2020-08-04
|
|
154
|
-
|
|
155
|
-
### Changed
|
|
156
|
-
|
|
157
|
-
- Updated eslint to 7.6.0
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
## [15.0.1] - 2020-07-28
|
|
161
|
-
|
|
162
|
-
### Changed
|
|
163
|
-
|
|
164
|
-
- Renamed package to `@koffeine/eslint-config`
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
## [15.0.0] - 2020-07-26
|
|
168
|
-
|
|
169
|
-
### Changed
|
|
170
|
-
|
|
171
|
-
- Updated eslint to 7.5.0
|
|
172
|
-
- Updated camelcase rule with `{ properties: 'always', ignoreDestructuring: false, ignoreImports: false, ignoreGlobals: false }`
|
|
173
|
-
- Enabled default-case-last rule
|
|
174
|
-
- Disabled global-require rule
|
|
175
|
-
- Disabled no-buffer-constructor rule
|
|
176
|
-
- Updated no-extra-boolean-cast rule with `{ enforceForLogicalOperands: true }`
|
|
177
|
-
- Updated no-extra-parens rule with `{ conditionalAssign: true, returnAssign: true, nestedBinaryExpressions: false, ignoreJSX: 'none', enforceForArrowConditionals: true, enforceForSequenceExpressions: true, enforceForNewInMemberExpressions: false, enforceForFunctionPrototypeMethods: false }`
|
|
178
|
-
- Enabled no-loss-of-precision rule
|
|
179
|
-
- Disabled no-mixed-requires rule
|
|
180
|
-
- Disabled no-new-require rule
|
|
181
|
-
- Disabled no-path-concat rule
|
|
182
|
-
- Disabled no-process-env rule
|
|
183
|
-
- Disabled no-process-exit rule
|
|
184
|
-
- Enabled no-promise-executor-return rule
|
|
185
|
-
- Enabled no-unreachable-loop rule
|
|
186
|
-
- Enabled no-useless-backreference rule
|
|
187
|
-
- Updated no-void rule with `{ allowAsStatement: false }`
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
## [14.0.3] - 2020-07-24
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
## [14.0.2] - 2020-01-06
|
|
194
|
-
|
|
195
|
-
### Changed
|
|
196
|
-
|
|
197
|
-
- Updated eslint to 6.8.0
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
## [14.0.1] - 2019-12-02
|
|
201
|
-
|
|
202
|
-
### Changed
|
|
203
|
-
|
|
204
|
-
- Updated eslint to 6.7.2
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
## [14.0.0] - 2019-11-25
|
|
208
|
-
|
|
209
|
-
### Changed
|
|
210
|
-
|
|
211
|
-
- Updated eslint to 6.7.1
|
|
212
|
-
- Updated camelcase rule with `{ properties: 'always', ignoreDestructuring: false, ignoreImports: false }`
|
|
213
|
-
- Enabled grouped-accessor-pairs rule with `'anyOrder'`
|
|
214
|
-
- Enabled no-constructor-return rule
|
|
215
|
-
- Enabled no-dupe-else-if rule
|
|
216
|
-
- Enabled no-setter-return rule
|
|
217
|
-
- Enabled prefer-exponentiation-operator rule
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
## [13.0.0] - 2019-10-28
|
|
221
|
-
|
|
222
|
-
### Changed
|
|
223
|
-
|
|
224
|
-
- Updated eslint to 6.6.0
|
|
225
|
-
- Updated no-extra-parens rule with `{ conditionalAssign: true, returnAssign: true, nestedBinaryExpressions: false, ignoreJSX: 'none', enforceForArrowConditionals: true, enforceForSequenceExpressions: true, enforceForNewInMemberExpressions: false }`
|
|
226
|
-
- Updated no-unsafe-negation rule with `{ enforceForOrderingRelations: true }`
|
|
227
|
-
- Updated use-isnan rule with `{ enforceForSwitchCase: true, enforceForIndexOf: true }`
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
## [12.0.0] - 2019-10-03
|
|
231
|
-
|
|
232
|
-
### Changed
|
|
233
|
-
|
|
234
|
-
- Updated eslint to 6.5.1
|
|
235
|
-
- Updated use-isnan rule with `{ enforceForSwitchCase: true }`
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
## [11.0.0] - 2019-09-16
|
|
239
|
-
|
|
240
|
-
### Changed
|
|
241
|
-
|
|
242
|
-
- Updated eslint to 6.4.0
|
|
243
|
-
- Updated computed-property-spacing rule with `'never', { enforceForClassMembers: true }`
|
|
244
|
-
- Enabled default-param-last rule
|
|
245
|
-
- Enabled no-import-assign rule
|
|
246
|
-
- Enabled prefer-regex-literals rule
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
## [10.0.0] - 2019-09-02
|
|
250
|
-
|
|
251
|
-
### Changed
|
|
252
|
-
|
|
253
|
-
- Updated eslint to 6.3.0
|
|
254
|
-
- Enabled reportUnusedDisableDirectives feature
|
|
255
|
-
- Updated no-extra-parens rule with `{ conditionalAssign: true, returnAssign: true, nestedBinaryExpressions: false, ignoreJSX: 'none', enforceForArrowConditionals: true, enforceForSequenceExpressions: true }`
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
## [9.0.0] - 2019-08-23
|
|
259
|
-
|
|
260
|
-
### Changed
|
|
261
|
-
|
|
262
|
-
- Updated eslint to 6.2.1
|
|
263
|
-
|
|
264
|
-
### Removed
|
|
265
|
-
|
|
266
|
-
- Removed ES5 syntax support
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
## [8.0.3] - 2019-07-22
|
|
270
|
-
|
|
271
|
-
### Changed
|
|
272
|
-
|
|
273
|
-
- Updated eslint to 6.1.0
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
## [8.0.2] - 2019-07-18
|
|
277
|
-
|
|
278
|
-
## Changed
|
|
279
|
-
|
|
280
|
-
- Disabled one-var rule
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
## [8.0.1] - 2019-07-01
|
|
284
|
-
|
|
285
|
-
### Changed
|
|
286
|
-
|
|
287
|
-
- Updated new-parens rule with `'always'`
|
|
288
|
-
- Disabled require-atomic-updates rule
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
## [8.0.0] - 2019-06-25
|
|
292
|
-
|
|
293
|
-
### Changed
|
|
294
|
-
|
|
295
|
-
- Updated eslint to 6.0.1
|
|
296
|
-
- Enabled function-paren-newline rule with `'consistent'`
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
## [7.0.9] - 2019-04-01
|
|
300
|
-
|
|
301
|
-
### Changed
|
|
302
|
-
|
|
303
|
-
- Updated eslint to 5.16.0
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
## [7.0.8] - 2019-03-19
|
|
307
|
-
|
|
308
|
-
### Changed
|
|
309
|
-
|
|
310
|
-
- Updated eslint to 5.15.3
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
## [7.0.7] - 2019-03-18
|
|
314
|
-
|
|
315
|
-
### Changed
|
|
316
|
-
|
|
317
|
-
- Updated eslint to 5.15.2
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
## [7.0.6] - 2019-03-05
|
|
321
|
-
|
|
322
|
-
### Changed
|
|
323
|
-
|
|
324
|
-
- Updated eslint to 5.15.1
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
## [7.0.5] - 2019-03-04
|
|
328
|
-
|
|
329
|
-
### Changed
|
|
330
|
-
|
|
331
|
-
- Updated eslint to 5.15.0
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
## [7.0.4] - 2019-02-19
|
|
335
|
-
|
|
336
|
-
### Changed
|
|
337
|
-
|
|
338
|
-
- Updated eslint to 5.14.1
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
## [7.0.3] - 2019-02-18
|
|
342
|
-
|
|
343
|
-
### Changed
|
|
344
|
-
|
|
345
|
-
- Updated eslint to 5.14.0
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
## [7.0.2] - 2019-02-04
|
|
349
|
-
|
|
350
|
-
### Changed
|
|
351
|
-
|
|
352
|
-
- Updated eslint to 5.13.0
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
## [7.0.1] - 2019-01-21
|
|
356
|
-
|
|
357
|
-
### Changed
|
|
358
|
-
|
|
359
|
-
- Updated eslint to 5.12.1
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
## [7.0.0] - 2019-01-07
|
|
363
|
-
|
|
364
|
-
### Changed
|
|
365
|
-
|
|
366
|
-
- Updated eslint to 5.12.0
|
|
367
|
-
- Enabled no-useless-catch rule
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
## [6.0.0] - 2018-12-10
|
|
371
|
-
|
|
372
|
-
### Changed
|
|
373
|
-
|
|
374
|
-
- Updated eslint to 5.10.0
|
|
375
|
-
- Updated padding-line-between-statements rule with `{ prev: '*', next: 'block', blankLine: 'always' }, { prev: 'block', next: '*', blankLine: 'always' }, { prev: '*', next: 'block-like', blankLine: 'always' }, { prev: 'block-like', next: '*', blankLine: 'always' }, { prev: '*', next: 'class', blankLine: 'always' }, { prev: 'class', next: '*', blankLine: 'always' }, { prev: '*', next: 'do', blankLine: 'always' }, { prev: 'do', next: '*', blankLine: 'always' }, { prev: '*', next: 'for', blankLine: 'always' }, { prev: 'for', next: '*', blankLine: 'always' }, { prev: '*', next: 'function', blankLine: 'always' }, { prev: 'function', next: '*', blankLine: 'always' }, { prev: '*', next: 'if', blankLine: 'always' }, { prev: 'if', next: '*', blankLine: 'always' }, { prev: '*', next: 'multiline-block-like', blankLine: 'always' }, { prev: 'multiline-block-like', next: '*', blankLine: 'always' }, { prev: '*', next: 'multiline-const', blankLine: 'always' }, { prev: 'multiline-const', next: '*', blankLine: 'always' }, { prev: '*', next: 'multiline-let', blankLine: 'always' }, { prev: 'multiline-let', next: '*', blankLine: 'always' }, { prev: '*', next: 'multiline-var', blankLine: 'always' }, { prev: 'multiline-var', next: '*', blankLine: 'always' }, { prev: '*', next: 'switch', blankLine: 'always' }, { prev: 'switch', next: '*', blankLine: 'always' }, { prev: '*', next: 'try', blankLine: 'always' }, { prev: 'try', next: '*', blankLine: 'always' }, { prev: '*', next: 'while', blankLine: 'always' }, { prev: 'while', next: '*', blankLine: 'always' }`
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
## [5.0.10] - 2018-11-11
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
## [5.0.9] - 2018-11-11
|
|
382
|
-
|
|
383
|
-
### Changed
|
|
384
|
-
|
|
385
|
-
- Updated eslint to 5.9.0
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
## [5.0.8] - 2018-11-06
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
## [5.0.7] - 2018-11-06
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
## [5.0.6] - 2018-11-04
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
## [5.0.5] - 2018-10-27
|
|
398
|
-
|
|
399
|
-
### Changed
|
|
400
|
-
|
|
401
|
-
- Updated eslint to 5.8.0
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
## [5.0.4] - 2018-10-15
|
|
405
|
-
|
|
406
|
-
### Changed
|
|
407
|
-
|
|
408
|
-
- Updated eslint to 5.7.0
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
## [5.0.3] - 2018-09-30
|
|
412
|
-
|
|
413
|
-
### Changed
|
|
414
|
-
|
|
415
|
-
- Updated eslint to 5.6.1
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
## [5.0.2] - 2018-09-17
|
|
419
|
-
|
|
420
|
-
### Changed
|
|
421
|
-
|
|
422
|
-
- Updated eslint to 5.6.0
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
## [5.0.1] - 2018-09-03
|
|
426
|
-
|
|
427
|
-
### Changed
|
|
428
|
-
|
|
429
|
-
- Updated eslint to 5.5.0
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
## [5.0.0] - 2018-08-06
|
|
433
|
-
|
|
434
|
-
### Changed
|
|
435
|
-
|
|
436
|
-
- Updated eslint to 5.3.0
|
|
437
|
-
- Enabled no-async-promise-executor rule
|
|
438
|
-
- Enabled no-misleading-character-class rule
|
|
439
|
-
- Enabled require-atomic-updates rule
|
|
440
|
-
- Enabled require-unicode-regexp rule
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
## [4.0.2] - 2018-07-23
|
|
444
|
-
|
|
445
|
-
### Changed
|
|
446
|
-
|
|
447
|
-
- Updated eslint to 5.2.0
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
## [4.0.1] - 2018-07-09
|
|
451
|
-
|
|
452
|
-
### Changed
|
|
453
|
-
|
|
454
|
-
- Updated eslint to 5.1.0
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
## [4.0.0] - 2018-07-05
|
|
458
|
-
|
|
459
|
-
### Changed
|
|
460
|
-
|
|
461
|
-
- Updated eslint to 5.0.1
|
|
462
|
-
- Enabled array-element-newline rule with `'consistent'`
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
## [3.0.6] - 2018-03-10
|
|
466
|
-
|
|
467
|
-
### Changed
|
|
468
|
-
|
|
469
|
-
- Updated no-underscore-dangle rule with `{ allowAfterThis: true, allowAfterSuper: false, enforceInMethodNames: true }`
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
## [3.0.5] - 2018-03-22
|
|
473
|
-
|
|
474
|
-
### Changed
|
|
475
|
-
|
|
476
|
-
- Updated one-var rule with `{ var: 'always', let: 'always', const: 'always', separateRequires: true }`
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
## [3.0.4] - 2018-03-22
|
|
480
|
-
|
|
481
|
-
### Changed
|
|
482
|
-
|
|
483
|
-
- Updated eslint to 4.19.1
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
## [3.0.3] - 2018-03-05
|
|
487
|
-
|
|
488
|
-
### Changed
|
|
489
|
-
|
|
490
|
-
- Updated eslint to 4.18.2
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
## [3.0.2] - 2018-02-21
|
|
494
|
-
|
|
495
|
-
### Changed
|
|
496
|
-
|
|
497
|
-
- Updated eslint to 4.18.1
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
## [3.0.1] - 2018-02-19
|
|
501
|
-
|
|
502
|
-
### Changed
|
|
503
|
-
|
|
504
|
-
- Updated eslint to 4.18.0
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
## [3.0.0] - 2018-02-05
|
|
508
|
-
|
|
509
|
-
### Changed
|
|
510
|
-
|
|
511
|
-
- Updated eslint to 4.17.0
|
|
512
|
-
- Updated padding-line-between-statements rule with `{ blankLine: 'always', prev: '*', next: 'block-like' }, { blankLine: 'always', prev: 'block-like', next: '*' }, { blankLine: 'always', prev: '*', next: 'block' }, { blankLine: 'always', prev: 'block', next: '*' }, { blankLine: 'always', prev: '*', next: 'class' }, { blankLine: 'always', prev: 'class', next: '*' }, { blankLine: 'always', prev: '*', next: 'do' }, { blankLine: 'always', prev: 'do', next: '*' }, { blankLine: 'always', prev: '*', next: 'for' }, { blankLine: 'always', prev: 'for', next: '*' }, { blankLine: 'always', prev: '*', next: 'function' }, { blankLine: 'always', prev: 'function', next: '*' }, { blankLine: 'always', prev: '*', next: 'if' }, { blankLine: 'always', prev: 'if', next: '*' }, { blankLine: 'always', prev: '*', next: 'multiline-block-like' }, { blankLine: 'always', prev: 'multiline-block-like', next: '*' }, { blankLine: 'always', prev: '*', next: 'switch' }, { blankLine: 'always', prev: 'switch', next: '*' }, { blankLine: 'always', prev: '*', next: 'try' }, { blankLine: 'always', prev: 'try', next: '*' }, { blankLine: 'always', prev: '*', next: 'while' }, { blankLine: 'always', prev: 'while', next: '*' }`
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
## [2.0.2] - 2018-01-23
|
|
516
|
-
|
|
517
|
-
### Changed
|
|
518
|
-
|
|
519
|
-
- Updated eslint to 4.16.0
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
## [2.0.1] - 2018-01-08
|
|
523
|
-
|
|
524
|
-
### Changed
|
|
525
|
-
|
|
526
|
-
- Updated eslint to 4.15.0
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
## [2.0.0] - 2017-12-24
|
|
530
|
-
|
|
531
|
-
### Changed
|
|
532
|
-
|
|
533
|
-
- Updated eslint to 4.14.0
|
|
534
|
-
- Enabled one-var rule with `{ var: 'always', let: 'always', const: 'always', separateRequires: true }`
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
## [1.1.4] - 2017-12-12
|
|
538
|
-
|
|
539
|
-
### Changed
|
|
540
|
-
|
|
541
|
-
- Updated eslint to 4.13.1
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
## [1.1.3] - 2017-12-11
|
|
545
|
-
|
|
546
|
-
### Changed
|
|
547
|
-
|
|
548
|
-
- Updated eslint to 4.13.0
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
## [1.1.2] - 2017-11-30
|
|
552
|
-
|
|
553
|
-
### Changed
|
|
554
|
-
|
|
555
|
-
- Updated eslint to 4.12.1
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
## [1.1.1] - 2017-11-26
|
|
559
|
-
|
|
560
|
-
### Changed
|
|
561
|
-
|
|
562
|
-
- Updated eslint to 4.12.0
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
## [1.1.0] - 2017-11-21
|
|
566
|
-
|
|
567
|
-
### Added
|
|
568
|
-
|
|
569
|
-
- Added ES5 syntax support
|
|
570
|
-
|
|
571
|
-
### Changed
|
|
572
|
-
|
|
573
|
-
- Updated no-shadow rule with `{ builtinGlobals: false, hoist: 'all' }`
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
## [1.0.0] - 2017-11-21
|
|
577
|
-
|
|
578
|
-
### Added
|
|
579
|
-
|
|
580
|
-
- Initial public release
|