Skip to content

Commit 4f2e116

Browse files
fix(deps): update typescript-eslint monorepo to v6 (major) (#681)
BREAKING CHANGE: drop old typescript version (<4.2.4) * fix(deps): update typescript-eslint monorepo to v6 * fix: ts-eslint configs file for compatibility to v5 * fix: Specify peer to match ts-eslint's TS support --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: saji-ryu <[email protected]>
1 parent 252c7f5 commit 4f2e116

File tree

3 files changed

+3306
-7072
lines changed

3 files changed

+3306
-7072
lines changed

lib/typescript.js

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
module.exports = {
22
parser: "@typescript-eslint/parser",
33
plugins: ["@typescript-eslint"],
4-
extends: ["plugin:@typescript-eslint/recommended"],
4+
extends: [
5+
"plugin:@typescript-eslint/recommended",
6+
"plugin:@typescript-eslint/stylistic",
7+
],
58
// It's 5〜10x slower with the project setting.
69
// So We disable it until the issue has been fixed
710
/*
@@ -36,5 +39,26 @@ module.exports = {
3639
// which means these can be checked without parserOptions.project
3740
// "@typescript-eslint/no-for-in-array": "error",
3841
// "@typescript-eslint/no-unnecessary-type-assertion": "warn",
42+
43+
// These rules are temporarily set to maintain compatibility with v5.
44+
// To delete as appropriate when reviewing the adaptation rules again.
45+
// rules removed from `recommended` in v6
46+
"no-extra-semi": "off",
47+
"@typescript-eslint/no-extra-semi": "error",
48+
// rules moved to `strict` in v6
49+
"@typescript-eslint/no-non-null-assertion": "warn",
50+
// rules added to `recommended` in v6
51+
"@typescript-eslint/no-duplicate-enum-values": "off",
52+
"@typescript-eslint/no-unsafe-declaration-merging": "off",
53+
// `stylistic` rules not moved from v5 `recommended`
54+
"@typescript-eslint/ban-tslint-comment": "off",
55+
"@typescript-eslint/class-literal-property-style": "off",
56+
"@typescript-eslint/consistent-generic-constructors": "off",
57+
"@typescript-eslint/consistent-indexed-object-style": "off",
58+
"@typescript-eslint/consistent-type-assertions": "off",
59+
"@typescript-eslint/consistent-type-definitions": "off",
60+
"@typescript-eslint/no-confusing-non-null-assertion": "off",
61+
"@typescript-eslint/prefer-for-of": "off",
62+
"@typescript-eslint/prefer-function-type": "off",
3963
},
4064
};

0 commit comments

Comments
 (0)