-
-
Notifications
You must be signed in to change notification settings - Fork 564
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: eslint 9 compatibility #410
Comments
It does not, but stay tuned |
Hi Guys! Do you have any timeframes here? The only way to make this package work, for now, is to copy this section and put it in the |
Just wanted to share how I got eslint-config-standard working with eslint@9. install dev dependencies
then change import globals from 'globals'
import pluginJs from '@eslint/js'
import standard from 'eslint-config-standard'
import pluginN from 'eslint-plugin-n'
import pluginPromise from 'eslint-plugin-promise'
import pluginImport from 'eslint-plugin-import'
const config = [
{
files: ['**/*.{js,mjs,cjs}'],
languageOptions: {
globals: {
...globals.mocha, // I am using mocha, remove if not needed...
...globals.node,
}
}
},
pluginJs.configs.recommended,
{
plugins: {
n: pluginN,
import: pluginImport,
promise: pluginPromise
},
rules: standard.rules
},
{
ignores: ['coverage/', 'dist/', 'lib/']
}
]
export default config |
Since we couldn't reach a conclusion on governance (standard/standard#1948 (comment)) some of us are today launching an alternative project today that aims to carry the torch forward in the same spirit as It brings support for ESLint 9 and flat configs from the start, as well as eg. TypeScript support, semistandard support and option for a style-less setup. That's sadly where I will focus my efforts from now on. |
eslint-config-standardは更新が止まっていて、 この新しいプロジェクトを開発中とのことだった。 standard/eslint-config-standard#410
Because eslint-config-standard still not being compatible with eslint > 9 version. The idea is to use eslint-neostandard instead, see * https://github.com/neostandard/neostandard * standard/eslint-config-standard#410 (comment)
Hi guys!
Please tell us if
eslint-config-standard
is compatible with the new version of ESlint?and if yes please add it to
peerDependencies
The text was updated successfully, but these errors were encountered: