Skip to content

Commit ef1a566

Browse files
Boshenclaude
andcommitted
chore: make lint deny warnings
- Add --deny-warnings flag to lint script - Update CI to also deny warnings Note: 12 existing warnings need to be fixed. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9119a63 commit ef1a566

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: vite fmt --check
4646

4747
- name: Lint (with GitHub annotations)
48-
run: vite lint --format github --type-aware --type-check
48+
run: vite lint --deny-warnings --format github --type-aware --type-check
4949

5050
- name: Run tests
5151
run: vite test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"ready": "vite run fmt && vite run lint && vite run test && vite run build",
1010
"dev": "vite run @vibe/dashboard#dev",
1111
"build": "vite run @vibe/dashboard#build",
12-
"lint": "vite lint --type-aware --type-check",
12+
"lint": "vite lint --deny-warnings --type-aware --type-check",
1313
"test": "vite test",
1414
"fmt": "vite fmt",
1515
"fmt:check": "vite fmt --check",

0 commit comments

Comments
 (0)