-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
43 lines (35 loc) · 936 Bytes
/
Copy path.gitignore
File metadata and controls
43 lines (35 loc) · 936 Bytes
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
# Rust build artifacts.
/target
**/*.rs.bk
# Packaged release archives. Both the nightly roundtrip and the release
# workflow write here, and a local run of either leaves a multi-megabyte
# archive in the tree that a wide `git add` would otherwise commit.
/dist/
# Agent working files and local logs (never tracked).
/.agent/
/logs/
# Coverage output.
/lcov.info
*.profraw
# Generated render and audio outputs (the app writes these; they are not source).
/mandelbrot.png
/tone.wav
/renders/
/numinous-*.png
/.numinous-journey
/.numinous-scores
/.numinous-crash.log
# Cargo.lock IS committed (this is an application workspace); do not ignore it.
# OS / editor cruft.
.DS_Store
Thumbs.db
__pycache__/
*.py[cod]
*.swp
.idea/
.vscode/
# Tool caches. Ruff writes its own .gitignore inside this directory, so the
# tree looks clean until that file goes missing; own the rule here instead.
.ruff_cache/
# Secrets (never tracked).
.env