Skip to content

Commit

Permalink
chore: Use max warnings everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
garethfuller committed Dec 18, 2024
1 parent 69cdf0a commit 5ed5650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/beets-frontend-v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dev:no-gen": "next dev -p 3001",
"gen:wagmi": "pnpm wagmi generate",
"lint": "eslint . --cache --cache-location 'node_modules/.cache/.eslintcache'",
"lint:fix": "eslint . --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"lint:fix": "eslint . --fix --max-warnings 0 --cache --cache-location 'node_modules/.cache/.eslintcache'",
"format": "prettier '**/*.*(md|json|yaml|ts|js|tsx)' --check --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"format:fix": "prettier '**/*.*(md|json|yaml|ts|js|tsx)' --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"start": "next start",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"graphql:gen": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen -r dotenv/config -c ./shared/services/api/codegen.ts",
"lint": "eslint . --cache --cache-location 'node_modules/.cache/.eslintcache'",
"lint:fix": "eslint . --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"lint:fix": "eslint . --fix --max-warnings 0 --cache --cache-location 'node_modules/.cache/.eslintcache'",
"format": "prettier '**/*.*(md|json|yaml|ts|js|tsx)' --check --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"format:fix": "prettier '**/*.*(md|json|yaml|ts|js|tsx)' --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"test": "pnpm test:unit & pnpm run test:integration",
Expand Down

0 comments on commit 5ed5650

Please sign in to comment.