Skip to content

Commit 4c876b9

Browse files
committed
Move rules deprecated in ESLint 8.53.0 to the deprecated section
1 parent 24445c0 commit 4c876b9

File tree

4 files changed

+94
-90
lines changed

4 files changed

+94
-90
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Example ESLint configuration:
275275
}
276276
```
277277

278-
### [lines-around-comment]
278+
### [lines-around-comment] \(deprecated)
279279

280280
(The following applies to [@typescript-eslint/lines-around-comment] as well.)
281281

@@ -334,7 +334,7 @@ Example ESLint configuration:
334334
}
335335
```
336336

337-
### [max-len]
337+
### [max-len] \(deprecated)
338338

339339
(The following applies to [vue/max-len] as well.)
340340

@@ -357,7 +357,7 @@ Example ESLint configuration:
357357
}
358358
```
359359

360-
### [no-confusing-arrow]
360+
### [no-confusing-arrow] \(deprecated)
361361

362362
**This rule requires certain options.**
363363

@@ -407,7 +407,7 @@ Example ESLint configuration:
407407

408408
(Note: The CLI helper tool considers `{allowParens: true}` to be the default, which is the case since ESLint 6.0.0. The tool will produce a warning if you use the default even if you use an older version of ESLint. It doesn’t hurt to explicitly set `{allowParens: false}` even though it is technically redundant. This way you are prepared for a future ESLint upgrade and the CLI tool can be kept simple.)
409409

410-
### [no-mixed-operators]
410+
### [no-mixed-operators] \(deprecated)
411411

412412
**This rule requires special attention when writing code.**
413413

@@ -460,7 +460,7 @@ Example ESLint configuration:
460460
}
461461
```
462462

463-
### [no-tabs]
463+
### [no-tabs] \(deprecated)
464464

465465
**This rule requires certain options.**
466466

@@ -546,7 +546,7 @@ Example configuration:
546546
}
547547
```
548548

549-
### [quotes]
549+
### [quotes] \(deprecated)
550550

551551
(The following applies to [babel/quotes] and [@typescript-eslint/quotes] as well.)
552552

index.js

+70-66
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,11 @@ const specialRule = 0;
77
module.exports = {
88
rules: {
99
// The following rules can be used in some cases. See the README for more
10-
// information. (These are marked with `0` instead of `"off"` so that a
11-
// script can distinguish them.)
10+
// information. These are marked with `0` instead of `"off"` so that a
11+
// script can distinguish them. Note that there are a few more of these
12+
// in the deprecated section below.
1213
"curly": specialRule,
13-
"lines-around-comment": specialRule,
14-
"max-len": specialRule,
15-
"no-confusing-arrow": specialRule,
16-
"no-mixed-operators": specialRule,
17-
"no-tabs": specialRule,
1814
"no-unexpected-multiline": specialRule,
19-
"quotes": specialRule,
2015
"@typescript-eslint/lines-around-comment": specialRule,
2116
"@typescript-eslint/quotes": specialRule,
2217
"babel/quotes": specialRule,
@@ -25,64 +20,6 @@ module.exports = {
2520
"vue/max-len": specialRule,
2621

2722
// The rest are rules that you never need to enable when using Prettier.
28-
"array-bracket-newline": "off",
29-
"array-bracket-spacing": "off",
30-
"array-element-newline": "off",
31-
"arrow-parens": "off",
32-
"arrow-spacing": "off",
33-
"block-spacing": "off",
34-
"brace-style": "off",
35-
"comma-dangle": "off",
36-
"comma-spacing": "off",
37-
"comma-style": "off",
38-
"computed-property-spacing": "off",
39-
"dot-location": "off",
40-
"eol-last": "off",
41-
"func-call-spacing": "off",
42-
"function-call-argument-newline": "off",
43-
"function-paren-newline": "off",
44-
"generator-star-spacing": "off",
45-
"implicit-arrow-linebreak": "off",
46-
"indent": "off",
47-
"jsx-quotes": "off",
48-
"key-spacing": "off",
49-
"keyword-spacing": "off",
50-
"linebreak-style": "off",
51-
"max-statements-per-line": "off",
52-
"multiline-ternary": "off",
53-
"newline-per-chained-call": "off",
54-
"new-parens": "off",
55-
"no-extra-parens": "off",
56-
"no-extra-semi": "off",
57-
"no-floating-decimal": "off",
58-
"no-mixed-spaces-and-tabs": "off",
59-
"no-multi-spaces": "off",
60-
"no-multiple-empty-lines": "off",
61-
"no-trailing-spaces": "off",
62-
"no-whitespace-before-property": "off",
63-
"nonblock-statement-body-position": "off",
64-
"object-curly-newline": "off",
65-
"object-curly-spacing": "off",
66-
"object-property-newline": "off",
67-
"one-var-declaration-per-line": "off",
68-
"operator-linebreak": "off",
69-
"padded-blocks": "off",
70-
"quote-props": "off",
71-
"rest-spread-spacing": "off",
72-
"semi": "off",
73-
"semi-spacing": "off",
74-
"semi-style": "off",
75-
"space-before-blocks": "off",
76-
"space-before-function-paren": "off",
77-
"space-in-parens": "off",
78-
"space-infix-ops": "off",
79-
"space-unary-ops": "off",
80-
"switch-colon-spacing": "off",
81-
"template-curly-spacing": "off",
82-
"template-tag-spacing": "off",
83-
"wrap-iife": "off",
84-
"wrap-regex": "off",
85-
"yield-star-spacing": "off",
8623
"@babel/object-curly-spacing": "off",
8724
"@babel/semi": "off",
8825
"@typescript-eslint/block-spacing": "off",
@@ -205,6 +142,73 @@ module.exports = {
205142
// https://github.com/eslint/eslint/pull/8286
206143
"indent-legacy": "off",
207144

145+
// Deprecated since version 8.53.0.
146+
// https://eslint.org/blog/2023/10/deprecating-formatting-rules/
147+
"array-bracket-newline": "off",
148+
"array-bracket-spacing": "off",
149+
"array-element-newline": "off",
150+
"arrow-parens": "off",
151+
"arrow-spacing": "off",
152+
"block-spacing": "off",
153+
"brace-style": "off",
154+
"comma-dangle": "off",
155+
"comma-spacing": "off",
156+
"comma-style": "off",
157+
"computed-property-spacing": "off",
158+
"dot-location": "off",
159+
"eol-last": "off",
160+
"func-call-spacing": "off",
161+
"function-call-argument-newline": "off",
162+
"function-paren-newline": "off",
163+
"generator-star-spacing": "off",
164+
"implicit-arrow-linebreak": "off",
165+
"indent": "off",
166+
"jsx-quotes": "off",
167+
"key-spacing": "off",
168+
"keyword-spacing": "off",
169+
"linebreak-style": "off",
170+
"lines-around-comment": specialRule,
171+
"max-len": specialRule,
172+
"max-statements-per-line": "off",
173+
"multiline-ternary": "off",
174+
"new-parens": "off",
175+
"newline-per-chained-call": "off",
176+
"no-confusing-arrow": specialRule,
177+
"no-extra-parens": "off",
178+
"no-extra-semi": "off",
179+
"no-floating-decimal": "off",
180+
"no-mixed-operators": specialRule,
181+
"no-mixed-spaces-and-tabs": "off",
182+
"no-multi-spaces": "off",
183+
"no-multiple-empty-lines": "off",
184+
"no-tabs": specialRule,
185+
"no-trailing-spaces": "off",
186+
"no-whitespace-before-property": "off",
187+
"nonblock-statement-body-position": "off",
188+
"object-curly-newline": "off",
189+
"object-curly-spacing": "off",
190+
"object-property-newline": "off",
191+
"one-var-declaration-per-line": "off",
192+
"operator-linebreak": "off",
193+
"padded-blocks": "off",
194+
"quote-props": "off",
195+
"quotes": specialRule,
196+
"rest-spread-spacing": "off",
197+
"semi": "off",
198+
"semi-spacing": "off",
199+
"semi-style": "off",
200+
"space-before-blocks": "off",
201+
"space-before-function-paren": "off",
202+
"space-in-parens": "off",
203+
"space-infix-ops": "off",
204+
"space-unary-ops": "off",
205+
"switch-colon-spacing": "off",
206+
"template-curly-spacing": "off",
207+
"template-tag-spacing": "off",
208+
"wrap-iife": "off",
209+
"wrap-regex": "off",
210+
"yield-star-spacing": "off",
211+
208212
// Deprecated since version 7.0.0.
209213
// https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md#700---2017-05-06
210214
"react/jsx-space-before-closing": "off",

package-lock.json

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@babel/plugin-transform-react-jsx": "7.23.4",
2525
"@typescript-eslint/eslint-plugin": "6.13.1",
2626
"@typescript-eslint/parser": "6.13.1",
27-
"eslint": "8.52.0",
27+
"eslint": "8.55.0",
2828
"eslint-config-google": "0.14.0",
2929
"eslint-find-rules": "4.1.0",
3030
"eslint-plugin-babel": "5.3.1",

0 commit comments

Comments
 (0)