Skip to content
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

feat: Add support for ESLint 9 #797

Merged
merged 14 commits into from
Sep 24, 2024
Merged

feat: Add support for ESLint 9 #797

merged 14 commits into from
Sep 24, 2024

Conversation

sajikix
Copy link
Contributor

@sajikix sajikix commented Aug 15, 2024

Outline

Added support for eslint v9. Specifically, I did the following.

  1. Update "eslint" and “@eslint/js” to v9
  2. Update plugins this pakcage is using
  3. Changed plugins that are not compatible with eslint v9 to alternative ones
  4. Resolve differences in ruleset created by changes in 2.
  5. Update test fixture due to API change by v9
  6. Add eslint v9 to peerDependency

Details

Update plugins this pakcage is using

  • [minor] eslint-plugin-n : 17.7.0 → 17.10.2
  • [minor] eslint-plugin-prettier : 5.1.3 → 5.2.1
  • [minor] eslint-plugin-react : 7.34.4 → 7.35.0
  • [major] typescript-eslint : 7.13.1 → 8.1.0
    • include "@typescript-eslint/eslint-plugin" and "@typescript-eslint/parser"

Changed plugins that are not compatible with eslint v9 to alternative ones

Since eslint-plugin-import does not support eslint v9, we chose to use eslint-plugin-import-x (famous fork of eslint-plugin-import) instead.

Resolve differences in ruleset created by changes in 2.

There are changes in ruleset due to a major version update of typescript-eslint to v8.

Also, some rules were transferred from typescript-eslint to @stylistic

  • "@typescript-eslint/indent"
  • "@typescript-eslint/no-extra-semi"

and, these rules are not disabled by eslint-config-prettier, so disable these two rules where eslint-config-prettier is used.

Update test fixture due to API change by v9

The eslint Node.js API has changed since FlatConfig became the default in eslint v9. Therefore, the fixture for rule-set testing was also changed to match this API change.

Update flat config type due to API change by v9

Change Linter.FlatConfig[] to Linter.Config[].

awaiting

eslint-plugin-jsx-a11y

→ Now eslint v9 support is complete.(2024/09/10)

@sajikix sajikix marked this pull request as draft August 16, 2024 03:12
@sajikix sajikix marked this pull request as ready for review September 10, 2024 09:42
Copy link
Member

@k1tikurisu k1tikurisu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some rules are DUPLICATED, is it okay to leave them as they are for now?
https://eslint.org/docs/latest/rules#deprecated

Comment on lines 31 to 33
"@typescript-eslint/indent": ["warn", 2, { SwitchCase: 1 }],
// "@stylistic/ts/indent": ["warn", 2, { SwitchCase: 1 }],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ask
Why is it currently disabled?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was a complete MISS! (thanks for the review🙏).

What I found out is that when I use eslint-plugin-prettier, It is basically disabling these style rules in eslint-config-prettier.

Unfortunately, the rules that have been moved to @Stylistic are not registered in eslint-config-prettier.

So, I changed the ruleset to disable these rules when using eslint-plugin-prettier.

Comment on lines 62 to 75
// rules deleted from `recommended` in v8
"no-loss-of-precision": "off",
"@typescript-eslint/no-loss-of-precision": "error",

// added instead of `@typescript-eslint/ban-types` in v8
"@typescript-eslint/no-empty-object-type": "error",
"@typescript-eslint/no-unsafe-function-type": "error",
"@typescript-eslint/no-wrapper-object-types": "error",

// rules added to `recommended` in v8
"@typescript-eslint/no-require-imports": "off",
"no-unused-expressions": "error",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/prefer-namespace-keyword": "off",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ask
How to check the difference in the rule set?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I basically used the following page as a reference

Also, as for ban-types, the rules have been split into multiple rules, so I have enabled each of the split rules.

Comment on lines 24 to 26
react: reactPlugin,
"react-hooks": hooksPlugin,
"jsx-a11y": jsxA11yPlugin,
"jsx-a11y": fixupPluginRules(jsxA11yPlugin),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ask
Is fixupPluginRules necessary?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed! I used to use it for temporary v9 support, but that is no longer necessary!
I'll delete it!


// rules deleted from `recommended` in v8
"no-loss-of-precision": "off",
"@typescript-eslint/no-loss-of-precision": "error",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that the rule "@typescript-eslint/no-loss-of-precision" has been removed. Is this setting still necessary?

https://typescript-eslint.io/blog/announcing-typescript-eslint-v8/#rule-breaking-changes
typescript-eslint/typescript-eslint#8832

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much!
This rule seems to have been deprecated because the eslint rules have been enhanced and the ts-eslint rules are no longer needed, so it looks good to remove it as you pointed out!

c.f. : https://typescript-eslint.io/rules/no-loss-of-precision/

@sajikix sajikix merged commit 06d5058 into master Sep 24, 2024
4 checks passed
@sajikix sajikix deleted the feat/eslint-v9-support branch September 24, 2024 08:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants