Skip to content

Commit

Permalink
fix(packages): don't auto fix eslint errors for packages, update lint…
Browse files Browse the repository at this point in the history
… cmd
  • Loading branch information
waldronmatt committed Sep 25, 2023
1 parent 8a5cfce commit 8b9c1a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/basic-math/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"README.md"
],
"scripts": {
"lint:ts": "eslint --fix **/*.{ts,tsx}",
"lint:ts": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint": "pnpm lint:ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/parity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"README.md"
],
"scripts": {
"lint:ts": "eslint --fix **/*.{ts,tsx}",
"lint:ts": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"lint": "pnpm lint:ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
Expand Down

0 comments on commit 8b9c1a8

Please sign in to comment.