gabriel / muse public
.gitignore
38 lines 535 B
e74bbfd6 chore: ignore .hypothesis, .pytest_cache, .mypy_cache, .ruff_cache; add… gabriel 8h ago
1 __pycache__/
2 *.pyc
3 *.pyo
4
5 # Virtual environments
6 .venv/
7 venv/
8 env/
9
10 # Coverage
11 .coverage
12 .coverage.*
13 coverage.xml
14 htmlcov/
15
16 # Build / distribution
17 dist/
18 build/
19 *.egg-info/
20
21 # Editor / OS
22 .DS_Store
23 .idea/
24 .vscode/
25 *.swp
26
27 # Generated data artifacts (large or machine-produced files)
28 artifacts/*.json
29
30 # Archive outputs from muse archive (generated, not source)
31 *.tar.gz
32 *.zip
33
34 # Muse repo state — created when tests or the CLI run inside the source tree.
35 # The source repo is not itself a Muse-managed repo.
36 .muse/
37 state/
38 .hypothesis/