You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The eslint-config-angular peerDependencies if copied as it is to install using npm will throw an error because v2.26.0 of eslint-plugin-import doesn't include support for eslint@9
"peerDependencies": {
"@eslint/js": "^9.9.1",
"angular-eslint": "^18.1.0 || ^19.0.0",
"eslint": "^9.9.1",
"eslint-plugin-import": "2.26.0", // this only allows eslint version upto ^8"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"typescript-eslint": "^8.0.0"
}
The text was updated successfully, but these errors were encountered:
In our code this bug leads to resort imports in every file and it also conflicts with the sorting build in IDEs (at least webstorm).
So using a newer broken version is not an option in my opinion. Instead we should either provide an upstream fix or just use another package, like https://github.com/azat-io/eslint-plugin-perfectionist
The
eslint-config-angular
peerDependencies if copied as it is to install using npm will throw an error becausev2.26.0
ofeslint-plugin-import
doesn't include support foreslint@9
The text was updated successfully, but these errors were encountered: