-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (55 loc) · 1.34 KB
/
Copy path.gitignore
File metadata and controls
61 lines (55 loc) · 1.34 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
# ── Rust ──────────────────────────────────────────────────────────
/target
**/*.rs.bk
*.profraw
# ── Python ────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
.eggs/
build/
dist/
.venv/
venv/
env/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.coverage
.coverage.*
htmlcov/
pip-wheel-metadata/
# ── Editors & OS ──────────────────────────────────────────────────
.vscode/
.idea/
.obsidian/
*.swp
*.swo
*.swn
*~
.DS_Store
Thumbs.db
# ── IntelNav local state ──────────────────────────────────────────
# Downloaded / cached weights. Tests fetch them into standard dirs;
# no reason to commit any.
/models/
*.gguf
*.safetensors
# Runtime state — logs, identities, live configs
*.log
/tmp/
.cache/
intelnav.log
identity.key
# Bench / profiling output
bench*.json
flamegraph.svg
perf.data
perf.data.old
# Env files — never commit secrets / API keys
.env
.env.*
!.env.example