Skip to content

Commit 008dadb

Browse files
hyperpolymathclaude
andcommitted
chore: add RSR-compliant .gitignore
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 59fdbae commit 008dadb

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

.gitignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
2+
# RSR-compliant .gitignore
3+
4+
# OS & Editor
5+
.DS_Store
6+
Thumbs.db
7+
*.swp
8+
*.swo
9+
*~
10+
.idea/
11+
.vscode/
12+
.directory
13+
14+
# Rust
15+
/target/
16+
**/target/
17+
**/*.rs.bk
18+
19+
# Idris2
20+
build/
21+
*.ibc
22+
23+
# Zig
24+
**/zig-out/
25+
**/.zig-cache/
26+
27+
# Nickel
28+
*.ncl.lock
29+
30+
# ReScript
31+
/lib/bs/
32+
**/lib/bs/
33+
/.bsb.lock
34+
**/.bsb.lock
35+
36+
# Dependencies
37+
/node_modules/
38+
**/node_modules/
39+
/vendor/
40+
/deps/
41+
package-lock.json
42+
43+
# Secrets
44+
.env
45+
.env.*
46+
*.pem
47+
*.key
48+
secrets/
49+
50+
# Test/Coverage
51+
/coverage/
52+
htmlcov/
53+
54+
# Logs
55+
*.log
56+
/logs/
57+
58+
# Temp
59+
/tmp/
60+
*.tmp
61+
*.bak
62+
63+
# Crash recovery artifacts
64+
ai-cli-crash-capture/

0 commit comments

Comments
 (0)