Skip to content

Commit

Permalink
Silence lint warnings in CI
Browse files Browse the repository at this point in the history
Warnings are useful during local development to encourage developers to double-check their code. Once committed, it's reasonable to assume that the developer deemed the warning as acceptable. This means that in CI warnings are unnecessary noise.
  • Loading branch information
connor-baer committed Sep 5, 2024
1 parent ce178f8 commit 04a7016
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 @@ -25,7 +25,7 @@
"test:ci": "vitest run --coverage",
"lint": "biome check && foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "biome check --write && foundry run eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:ci": "biome ci && foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:ci": "biome ci && foundry run eslint . --ext .js,.jsx,.ts,.tsx --quiet ",
"lint:css": "foundry run stylelint '**/*.css'",
"dev": "npm run docs:start",
"docs": "npm run docs:start",
Expand Down

0 comments on commit 04a7016

Please sign in to comment.