-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: upgrade packages to latest, especially @typescript-eslint versions to 8.18.0 #15
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call, thanks!
I'll go ahead and bump all the packages to their latest versions. Some of them are still on v6!
@@ -13,7 +13,7 @@ import tseslint from 'typescript-eslint'; | |||
export default tseslint.config( | |||
{ ignores: ["lib"] }, | |||
eslint.configs.recommended, | |||
...tseslint.configs.recommendedTypeChecked, | |||
tseslint.configs.recommendedTypeChecked, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the latest versions, the ...
is no longer necessary. Arbitrary nesting is now allowed.
files: ["*.js"], | ||
...tseslint.configs.disableTypeChecked, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tseslint.config
's extends
actually always worked this way, I'd just not gotten in the habit of using it nicely.
@@ -2,6 +2,7 @@ | |||
"compilerOptions": { | |||
"module": "NodeNext", | |||
"moduleResolution": "NodeNext", | |||
"noEmit": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should have been on before, so that if you ran npm run tsc
before npm run lint
you wouldn't have extra src/*.js
files to lint.
Upgrade versions to fix #14