Skip to content

Commit

Permalink
build: fix lint script
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Oct 9, 2024
1 parent 834d876 commit 6419a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"build": "rm -rf ./dist && rollup --config rollup.config.mjs && npm run types",
"watch": "rollup --config rollup.config.mjs --watch --watch.onEnd=\"npm run types\"",
"types": "rm -rf ./types && mkdir types && cp -r ./dist/types ./",
"lint": "eslint --max-warnings 0 && prettier '**/!(__mocks__|__tests__)/*.ts' --check",
"lint": "eslint --max-warnings 0 && prettier \"**/!(__mocks__|__tests__)/*.ts\" --check",
"lint:fix": "prettier . --write",
"preversion": "npm run build && npm test && npm run lint",
"test": "jest",
Expand Down

0 comments on commit 6419a9a

Please sign in to comment.