-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (44 loc) · 644 Bytes
/
Copy path.gitignore
File metadata and controls
54 lines (44 loc) · 644 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
44
45
46
47
48
49
50
51
52
53
54
# Rust
target/
# PGO profile data + stage stamps + logs (all under target/, already ignored,
# but listed explicitly for clarity)
target/pgo-data/
target/pgo-stages/
target/pgo-logs/
*.profraw
*.profdata
# IDE
.idea/
.vscode/
# OS
.DS_Store
Thumbs.db
# Environment
.env
.env.*
!.env.example
# Temporary files
*.tmp
*.bak
*.log
*~
# Python bytecode (scripts/__pycache__)
__pycache__/
*.pyc
*.pyo
# AI workdirs
worklog.md
codex/
agent/
other ai/
# Local clones / system skill libraries — must never be tracked
/cosmostrix/
/skills/
# log monitor
/logs/
/benchmark/logs/
*-resource-*.csv
# garbage stuff in root dir
*.txt*
*.ruff*
.vs/