Skip to content

Commit 846390e

Browse files
committed
chore: standardize .gitignore (RSR)
1 parent a0436c7 commit 846390e

File tree

1 file changed

+71
-25
lines changed

1 file changed

+71
-25
lines changed

.gitignore

Lines changed: 71 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,79 @@
1-
node_modules/
2-
.env
3-
*.log
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# RSR-compliant .gitignore
3+
4+
# OS & Editor
45
.DS_Store
6+
Thumbs.db
7+
*.swp
8+
*.swo
9+
*~
10+
.idea/
11+
.vscode/
12+
13+
# Build
14+
/target/
15+
/_build/
16+
/build/
17+
/dist/
18+
/out/
19+
20+
# Dependencies
21+
/node_modules/
22+
/vendor/
23+
/deps/
24+
/.elixir_ls/
25+
26+
# Rust
27+
# Cargo.lock # Keep for binaries
28+
29+
# Elixir
30+
/cover/
31+
/doc/
32+
*.ez
33+
erl_crash.dump
34+
35+
# Julia
36+
*.jl.cov
37+
*.jl.mem
38+
/Manifest.toml
539

640
# ReScript
7-
lib/
8-
*.bs.js
9-
.bsb.lock
10-
.merlin
41+
/lib/bs/
42+
/.bsb.lock
1143

12-
# Deno
13-
.deno/
14-
deno.lock
44+
# Python (SaltStack only)
45+
__pycache__/
46+
*.py[cod]
47+
.venv/
1548

16-
# Build outputs
17-
dist/
18-
build/
19-
*.wasm
49+
# Ada/SPARK
50+
*.ali
51+
/obj/
52+
/bin/
2053

21-
# IDE
22-
.vscode/
23-
.idea/
24-
*.swp
25-
*.swo
54+
# Haskell
55+
/.stack-work/
56+
/dist-newstyle/
2657

27-
# Test coverage
28-
coverage/
29-
.nyc_output/
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/
3075

31-
# Rust build artifacts
32-
src/wasm/target/
33-
src/wasm/Cargo.lock
76+
# Temp
77+
/tmp/
78+
*.tmp
79+
*.bak

0 commit comments

Comments
 (0)