Skip to content

Commit 91aefb8

Browse files
hyperpolymathclaude
andcommitted
chore: add RSR-compliant .gitignore
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ff19242 commit 91aefb8

1 file changed

Lines changed: 71 additions & 0 deletions

File tree

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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+
# PHP
15+
/vendor/
16+
composer.lock
17+
18+
# WordPress
19+
wp-content/uploads/
20+
wp-content/upgrade/
21+
wp-content/cache/
22+
wp-content/debug.log
23+
*.sql
24+
*.sql.gz
25+
26+
# Rust
27+
/target/
28+
**/target/
29+
**/*.rs.bk
30+
31+
# Idris2
32+
build/
33+
*.ibc
34+
35+
# Zig
36+
**/zig-out/
37+
**/.zig-cache/
38+
39+
# ReScript
40+
/lib/bs/
41+
**/lib/bs/
42+
/.bsb.lock
43+
**/.bsb.lock
44+
45+
# Dependencies
46+
/node_modules/
47+
**/node_modules/
48+
/deps/
49+
50+
# Secrets
51+
.env
52+
.env.*
53+
*.pem
54+
*.key
55+
secrets/
56+
57+
# Test/Coverage
58+
/coverage/
59+
htmlcov/
60+
61+
# Logs
62+
*.log
63+
/logs/
64+
65+
# Temp
66+
/tmp/
67+
*.tmp
68+
*.bak
69+
70+
# Crash recovery artifacts
71+
ai-cli-crash-capture/

0 commit comments

Comments
 (0)