-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BREAKING] Support ESLint v9 in plugin, config and next lint
#71218
Changes from all commits
e401e37
a87173a
e7ba144
0d43541
66ed5fc
aa4fa4b
4ea7adb
e790cbc
bfabfb9
362a2ff
23d0a93
1e4534a
2245269
f61fe67
8925753
9b382be
ef1b68c
c608bf1
87ca73b
547e6e7
57366a2
ad53745
e2278fc
f576bac
9b51be9
3eb3494
23dd9c1
ca961e1
3650648
f390079
f0b7f4a
29436b6
b9dd477
0c8c0e5
aea3112
ec1d385
418e359
85e118b
23362e3
4dbb080
1f8b07a
515ee54
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,10 @@ | |
"@typescript-eslint/array-type": "off", | ||
"@typescript-eslint/ban-ts-comment": "off", | ||
"@typescript-eslint/ban-tslint-comment": "off", | ||
"@typescript-eslint/ban-types": "off", | ||
"@typescript-eslint/no-empty-object-type": "off", | ||
"@typescript-eslint/no-restricted-types": "off", | ||
"@typescript-eslint/no-unsafe-function-type": "off", | ||
"@typescript-eslint/no-wrapper-object-types": "off", | ||
Comment on lines
+70
to
+72
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was split from |
||
"@typescript-eslint/class-literal-property-style": "off", | ||
"@typescript-eslint/consistent-generic-constructors": "off", | ||
"@typescript-eslint/consistent-indexed-object-style": "off", | ||
|
@@ -77,6 +80,7 @@ | |
"@typescript-eslint/no-empty-interface": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"@typescript-eslint/no-require-imports": "off", | ||
"@typescript-eslint/no-var-requires": "off", | ||
"@typescript-eslint/prefer-for-of": "off", | ||
"@typescript-eslint/prefer-function-type": "off", | ||
|
@@ -104,6 +108,7 @@ | |
"args": "none", | ||
"ignoreRestSiblings": true, | ||
"argsIgnorePattern": "^_", | ||
"caughtErrors": "none", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Restore v8 behavior |
||
"caughtErrorsIgnorePattern": "^_", | ||
"destructuredArrayIgnorePattern": "^_", | ||
"varsIgnorePattern": "^_" | ||
|
@@ -178,6 +183,7 @@ | |
{ | ||
"args": "all", | ||
"argsIgnorePattern": "^_", | ||
"caughtErrors": "none", | ||
"ignoreRestSiblings": true | ||
} | ||
] | ||
|
@@ -308,6 +314,7 @@ | |
"error", | ||
{ | ||
"args": "none", | ||
"caughtErrors": "none", | ||
"ignoreRestSiblings": true | ||
} | ||
], | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was split from
ban-types
andno-empty-interfaces
(https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.0.0)