Skip to content

Commit 1847d2f

Browse files
committed
fix(ci): remediate knip dead code scan and biome lint failures
1 parent 6e2f936 commit 1847d2f

53 files changed

Lines changed: 356 additions & 3448 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.auth/user.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

.gitignore

Lines changed: 111 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,129 @@
1-
```
2-
# React Router generated types
3-
.client/.react-router/
4-
5-
# Playwright test reports and results
1+
# Logs and temp files
2+
*.log
3+
*.tmp
4+
*.swp
5+
lint_output.txt
6+
tsc_output.txt
7+
*.tsbuildinfo
8+
.turbo/
69
playwright-report/
710
test-results/
8-
9-
# Dependency lock file (if not needed in version control)
10-
package-lock.json
11-
12-
# Environment files
11+
.react-router/
12+
client/.react-router/
1313
.env
1414
.env.local
15-
.env.*
16-
17-
# Logs
18-
*.log
19-
20-
# Temporary files
21-
*.tmp
15+
*.env.*
2216

23-
# Editor/IDE files
17+
# Editors
2418
.vscode/
2519
.idea/
26-
*.swp
27-
*.swo
2820

29-
# OS specific files
21+
# Dependencies
22+
node_modules/
23+
.venv/
24+
venv/
25+
__pycache__/
26+
.mypy_cache/
27+
.pytest_cache/
28+
dist/
29+
build/
30+
target/
31+
.gradle/
32+
33+
# System files
3034
.DS_Store
3135
Thumbs.db
3236

33-
# Coverage reports
37+
# Compiled files
38+
*.pyc
39+
*.class
40+
*.o
41+
*.exe
42+
*.dll
43+
*.so
44+
*.a
45+
*.obj
46+
*.out
47+
48+
# Coverage
3449
coverage/
3550
htmlcov/
3651
.coverage
3752

38-
# Build outputs
39-
dist/
40-
build/
41-
target/
53+
# Compressed files
54+
*.zip
55+
*.gz
56+
*.tar
57+
*.tgz
58+
*.bz2
59+
*.xz
60+
*.7z
61+
*.rar
62+
*.zst
63+
*.lz4
64+
*.lzh
65+
*.cab
66+
*.arj
67+
*.rpm
68+
*.deb
69+
*.Z
70+
*.lz
71+
*.lzo
72+
*.tar.gz
73+
*.tar.bz2
74+
*.tar.xz
75+
*.tar.zst
4276

43-
# Python cache
44-
__pycache__/
45-
*.pyc
46-
*.pyo
47-
*.pyd
77+
# Compiled utility outputs
78+
utils/**/*.js
79+
utils/**/*.d.ts
80+
utils/**/*.d.ts.map
4881

49-
# Node modules
50-
node_modules/
82+
# Legacy worktrees
83+
legacy/worktrees/
5184

52-
# Virtual environments
53-
venv/
54-
.venv/
55-
```
85+
# IDE/tool-specific
86+
.kilocodemodes
87+
.config/
88+
.context/
89+
.auth/
90+
91+
# Protocol 0 session files (not project documentation)
92+
task_plan.md
93+
findings.md
94+
findings/
95+
96+
# Log output directories
97+
logs/
98+
99+
# One-off debug artifacts
100+
test-bind.ts
101+
shell_metadata.csv
102+
FULL_SYSTEM_CONTEXT.json
103+
104+
# E2E visual regression snapshots (regenerable)
105+
tests/e2e/**/*.png
106+
e2e/__snapshots__/
107+
.gstack/
108+
.claude/skills/gstack/
109+
110+
# Self-hosted GitHub Actions runner
111+
.github/runner/
112+
113+
# Scratch directory for temporary scripts
114+
scratch/
115+
116+
# Agent session artefacts (Phase 3 audit additions — 2026-07-08)
117+
.stryker-tmp/
118+
ORIGINAL_REQUEST.md
119+
knip.txt
120+
test-results.json
121+
test-e2e-output.log
122+
e2e-console-logs.txt
123+
full_test_output.txt
124+
test_output.txt
125+
server.log
126+
check.log
127+
# Added by code-review-graph
128+
.code-review-graph/
129+
.agents/

0 commit comments

Comments
 (0)