Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
title = "gitleaks config"

[allowlist]
paths = [
'.*\.test\.ts',
'.*\.spec\.ts',
'.*__tests__.*',
]
7 changes: 6 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
bun run test && bun run lint
# === Quality Gate: pre-commit ===
# L1 + G1 + G2a (6DQ standard)
bun run typecheck
bun run lint
bun run test
gitleaks protect --staged --no-banner
3 changes: 3 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
bun run build && bun run test && bun run lint && bun run test:e2e

# G2b: dependency vulnerability scan
osv-scanner scan --lockfile=bun.lock --config=osv-scanner.toml
Loading