Skip to content

Commit 55bf79a

Browse files
aksOpsclaude
andcommitted
Clean up Python artifacts and update .gitignore for Java-only project
- Remove 840 pytest test artifacts (pytest-of-dev/) - Remove .coverage, pyproject.toml (Python build config) - Remove old Python-era design specs (NiceGUI UI, Python analyzer perf) - Remove tsconfig.tsbuildinfo (frontend build artifact) - Update .gitignore: add Python patterns, Neo4j data, frontend build artifacts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 089d4e4 commit 55bf79a

846 files changed

Lines changed: 29 additions & 1413 deletions

File tree

Some content is hidden

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

.coverage

-76 KB
Binary file not shown.

.gitignore

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ target/
2020
.DS_Store
2121
Thumbs.db
2222

23-
# Project
23+
# Project runtime data
2424
.osscodeiq/
25-
.superpowers/
2625
.code-intelligence/
2726
.code_intelligence_cache*/
2827
*.db
2928
*.db-wal
3029
*.db-shm
30+
*.mv.db
3131

3232
# Environment & secrets
3333
.env
@@ -41,7 +41,34 @@ Thumbs.db
4141
# Frontend
4242
src/main/frontend/node_modules/
4343
src/main/frontend/node/
44+
src/main/frontend/dist/
45+
src/main/frontend/tsconfig.tsbuildinfo
4446

4547
# Distribution
4648
*.tar.gz
4749
*.zip
50+
51+
# Python (legacy — removed from project)
52+
__pycache__/
53+
*.py[cod]
54+
*.egg-info/
55+
.eggs/
56+
*.egg
57+
.coverage
58+
.pytest_cache/
59+
pytest-of-*/
60+
htmlcov/
61+
dist/
62+
build/
63+
*.whl
64+
pyproject.toml
65+
uv.lock
66+
.venv/
67+
venv/
68+
69+
# Superpowers plugin
70+
.superpowers/
71+
72+
# Neo4j embedded data
73+
neo4j-data/
74+
graph.db/

docs/specs/2026-03-28-analyzer-performance-design.md

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

0 commit comments

Comments
 (0)