We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current version of eslint is v8, but it seems to have already passed EOL. see: https://eslint.org/blog/2024/09/eslint-v8-eol-version-support/
Therefore, I suggest updating eslint to v9.
In eslint v9, the default writing method will be flatConfig, so one of the following modifications will be necessary.
Rewrite the current config to flatConfig
Set the environment variable (ESLINT_USE_FLAT_CONFIG=false) to continue using the config. (see: https://eslint.org/docs/latest/use/configure/migration-guide#start-using-flat-config-files)
ESLINT_USE_FLAT_CONFIG=false
In v10, environment variables will also be removed, so in the long term, I think it would be better to rewrite it to flatConfig. see: https://eslint.org/blog/2023/10/flat-config-rollout-plans/#eslintrc-removed-in-eslint-v10.0.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Overview
The current version of eslint is v8, but it seems to have already passed EOL.
see: https://eslint.org/blog/2024/09/eslint-v8-eol-version-support/
Therefore, I suggest updating eslint to v9.
Notes
In eslint v9, the default writing method will be flatConfig, so one of the following modifications will be necessary.
Rewrite the current config to flatConfig
Set the environment variable (
ESLINT_USE_FLAT_CONFIG=false
) to continue using the config.(see: https://eslint.org/docs/latest/use/configure/migration-guide#start-using-flat-config-files)
In v10, environment variables will also be removed, so in the long term, I think it would be better to rewrite it to flatConfig.
see: https://eslint.org/blog/2023/10/flat-config-rollout-plans/#eslintrc-removed-in-eslint-v10.0.0
Acknowledgements
The text was updated successfully, but these errors were encountered: