Compare commits

..

2 Commits

Author SHA1 Message Date
9e4667faf0 Merge pull request 'fix: exclude shadcn files from lefthook svetle-check' (#10) from fixes/exclude-shadcn-from-check into main
Some checks failed
Build / build (push) Failing after 7m16s
Deploy Pipeline / pipeline (push) Failing after 7m24s
Lint / Lint Code (push) Failing after 7m14s
Test / Svelte Checks (push) Failing after 7m19s
Reviewed-on: #10
2026-01-05 06:35:14 +00:00
Ilia Mashkov
4705e40f92 fix: exclude shadcn files from lefthook svetle-check
Some checks failed
Build / build (pull_request) Failing after 7m11s
Lint / Lint Code (pull_request) Failing after 7m26s
Test / Svelte Checks (pull_request) Failing after 7m23s
2026-01-05 09:34:01 +03:00
2 changed files with 2 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ pre-push:
run: yarn tsc --noEmit
svelte-check:
run: yarn svelte-check --threshold warning
run: yarn check:shadcn-excluded --threshold warning
format-check:
glob: "*.{ts,js,svelte,json,md}"

View File

@@ -10,6 +10,7 @@
"prepare": "svelte-check --tsconfig ./tsconfig.json || echo ''",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"check:shadcn-excluded": "svelte-check --no-tsconfig --ignore \"src/shared/shadcn\"",
"lint": "oxlint",
"format": "dprint fmt",
"format:check": "dprint check",