-
Notifications
You must be signed in to change notification settings - Fork 3
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
replaced eslint-plugin-node with eslint-plugin-n #19
Conversation
…no longer maintained. bumped some deps to latest minor
This might not actually solve my problem which is being able to install ESM packages (it's still a good change I think). Main problem is that |
Kanske bara ta bort pluginen? Om jag tolkar det rätt så har vi 3 regler från den: const nodeRecommendedRules = {
"node/handle-callback-err": "error",
"node/no-path-concat": "error",
"node/no-process-exit": "error",
}; Värt att behålla bara för dem? Eller ligger det fler gömda under "recommended" kanske? |
Rent generellt tycker jag de är bra men det finns också en annan regel som jag vill ha in i framtiden: no-deprecated-api Vi verkar inte använda recommended-setet men det finns massor av bra grejer där med som kan vara värt att kika på efteråt. |
Ok, men jag godkänner denna. Lite läskigt bara med saker som inte underhålls helt. Kikade runt lite vad andra gör men det verkar som att folk istället för att använda andra libar kör helt andra lösningar är lint, snabbare alternativ med liknande men oftast en mer komplett lösning för kodvalidering etc. Nått värt att gräva i men inte just nu kanske :) |
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.
🌟
Fast nu förstår jag inte riktigt... Jag byter från |
eslint-plugin-node
seems to no longer be maintained, but a fork has appeared which fixes a lot of issues:eslint-plugin-n
. This should enable us to use packages which are now entirely written in ESM.Bonus: Bumped some deps to latest minor.