File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Build artifacts (CMakeCache.txt records absolute host paths and breaks
2+ # in-container builds, so we MUST exclude every local build directory)
3+ build /
4+ ** /build /
5+ dist /
6+ ** /dist /
7+ wheelhouse /
8+ ** /wheelhouse /
9+ ** /* .egg-info /
10+ ** /__pycache__ /
11+ ** /* .pyc
12+ ** /.pytest_cache /
13+
14+ # Test / coverage outputs
15+ coverage_html /
16+ coverage_html.tar.gz
17+ ** /coverage * .info
18+ ** /* .gcda
19+ ** /* .gcno
20+
21+ # IDE / editor / VCS metadata
22+ .git /
23+ .idea /
24+ .vscode /
25+ .qoder /
26+ .cursor /
27+ .devcontainer /
28+ ** /.DS_Store
29+
30+ # Python virtualenvs
31+ .venv /
32+ venv /
33+ env /
34+
35+ # Pre-built wheels we never want to ship in builder context
36+ tools /python_bind /dist /
37+ tools /python_bind /build /
38+ tools /python_bind /neug.egg-info /
39+ tools /python_bind /neug /* .so
40+
41+ # Top-level cmake build outputs (out-of-source builds)
42+ cmake-build- * /
43+
44+ # Logs / scratch files
45+ * .log
46+ serve.log
47+ batch.log
48+ benchmark.log
You can’t perform that action at this time.
0 commit comments