-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
100 lines (88 loc) · 1.85 KB
/
Copy path.gitignore
File metadata and controls
100 lines (88 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
## -------
## Python build artifacts and caches
## -------
/dist/
/build/
/artifacts/
/book/
*.egg-info/
__pycache__/
*.py[cod]
# Virtual environments (uv creates .venv). uv.lock is NOT ignored — commit it.
.venv/
venv/
# Tool caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
.tox/
.hypothesis/
# Release pipeline scratch file — written by .github/workflows/release.yml
release-notes.md
# CI scratch — exported lockfile the pip-audit job (.github/workflows/ci.yml) scans.
requirements-audit.txt
## -------
## Editors / IDEs
## -------
.vs/
.vscode/
!.vscode/extensions.json
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
*.code-workspace
.history/
.idea/
## -------
## Secrets / local config
## -------
.env
.env.local
## -------
## Per-developer agent instruction files
## -------
# On-disk instructions for coding-agent tooling. Each developer keeps their own
# copy; they are never pushed. Repository-wide guidance belongs in the tracked
# docs (README.md, CONTRIBUTING.md, RELEASING.md) instead.
AGENTS.md
CLAUDE.md
CLAUDE.local.md
.claude/
## -------
## macOS
## -------
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes
## -------
## Windows
## -------
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
$RECYCLE.BIN/
*.lnk
## -------
## Rust build artifacts
## -------
/target/
# Compiled PyO3 extension (installed by `maturin develop` into the Python package dir).
# The .pyd / .so / .pdb are build outputs, not source.
src/processkit/_processkit*.pyd
src/processkit/_processkit*.so
src/processkit/_processkit*.pdb
## -------
## mutmut (mutation testing, .github/workflows/nightly-hardening.yml)
## -------
# The sandboxed source-tree copy + all per-mutant results/stats mutmut writes
# (mutants/mutmut-stats.json, mutants/mutmut-cicd-stats.json, per-file .meta).
/mutants/