-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
refactor: use non deprecated type in eslint configuration #107
Conversation
and remove duplicated prettier configuration Signed-off-by: Jérôme Benoit <[email protected]>
package.json
Outdated
@@ -41,6 +41,7 @@ | |||
"build": "tsup", | |||
"publish": "clean-publish", | |||
"lint": "eslint --max-warnings=0", | |||
"lint:fix": "eslint --max-warnings=0 --fix", |
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 is a bit repetitive duplication of lint
command.
With pnpm
we can already do pnpm run lint --fix
. I don't really see reason for adding new command just for one extra parameter.
commit: |
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.
Looks good, thanks! Didn't realize we have 2 Prettier configs 😄
Signed-off-by: Jérôme Benoit <[email protected]>
and remove duplicated prettier configuration