Skip to content

Commit db8c827

Browse files
committed
chore: standardize .gitignore (RSR)
1 parent ab68c52 commit db8c827

1 file changed

Lines changed: 67 additions & 48 deletions

File tree

.gitignore

Lines changed: 67 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,79 @@
1-
# Rust
2-
target/
3-
Cargo.lock
4-
**/*.rs.bk
5-
*.pdb
6-
7-
# Node.js / VS Code client
8-
node_modules/
9-
dist/
10-
out/
11-
*.vsix
12-
package-lock.json
13-
14-
# Python / Sublime
15-
__pycache__/
16-
*.py[cod]
17-
*$py.class
18-
*.so
19-
.Python
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# RSR-compliant .gitignore
203

21-
# IDEs
22-
.vscode/
23-
.idea/
4+
# OS & Editor
5+
.DS_Store
6+
Thumbs.db
247
*.swp
258
*.swo
269
*~
27-
.DS_Store
10+
.idea/
11+
.vscode/
2812

29-
# Build artifacts
30-
*.exe
31-
*.dll
32-
*.dylib
13+
# Build
14+
/target/
15+
/_build/
16+
/build/
17+
/dist/
18+
/out/
3319

34-
# Logs
35-
*.log
36-
logs/
20+
# Dependencies
21+
/node_modules/
22+
/vendor/
23+
/deps/
24+
/.elixir_ls/
3725

38-
# Environment
39-
.env
40-
.env.local
41-
*.local
26+
# Rust
27+
# Cargo.lock # Keep for binaries
4228

43-
# Coverage
44-
coverage/
45-
*.profdata
46-
tarpaulin-report.html
29+
# Elixir
30+
/cover/
31+
/doc/
32+
*.ez
33+
erl_crash.dump
4734

48-
# Benchmarks
49-
criterion/
35+
# Julia
36+
*.jl.cov
37+
*.jl.mem
38+
/Manifest.toml
5039

51-
# Temporary files
52-
*.tmp
53-
*.temp
54-
.cache/
40+
# ReScript
41+
/lib/bs/
42+
/.bsb.lock
5543

56-
# Docker
57-
.dockerignore
44+
# Python (SaltStack only)
45+
__pycache__/
46+
*.py[cod]
47+
.venv/
5848

59-
# OS
60-
Thumbs.db
49+
# Ada/SPARK
50+
*.ali
51+
/obj/
52+
/bin/
53+
54+
# Haskell
55+
/.stack-work/
56+
/dist-newstyle/
57+
58+
# Chapel
59+
*.chpl.tmp.*
60+
61+
# Secrets
62+
.env
63+
.env.*
64+
*.pem
65+
*.key
66+
secrets/
67+
68+
# Test/Coverage
69+
/coverage/
70+
htmlcov/
71+
72+
# Logs
73+
*.log
74+
/logs/
75+
76+
# Temp
77+
/tmp/
78+
*.tmp
79+
*.bak

0 commit comments

Comments
 (0)