Skip to content

Commit 36580f1

Browse files
committed
chore: standardize .gitignore (RSR)
1 parent b872b77 commit 36580f1

1 file changed

Lines changed: 68 additions & 31 deletions

File tree

.gitignore

Lines changed: 68 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,79 @@
1+
# SPDX-License-Identifier: AGPL-3.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+
13+
# Build
14+
/target/
15+
/_build/
16+
/build/
17+
/dist/
18+
/out/
19+
120
# Dependencies
2-
node_modules/
3-
package-lock.json
4-
yarn.lock
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
534

6-
# Build output
7-
dist/
8-
build/
9-
*.tsbuildinfo
35+
# Julia
36+
*.jl.cov
37+
*.jl.mem
38+
/Manifest.toml
1039

11-
# Testing
12-
coverage/
13-
.nyc_output/
14-
*.lcov
40+
# ReScript
41+
/lib/bs/
42+
/.bsb.lock
1543

16-
# Environment
44+
# Python (SaltStack only)
45+
__pycache__/
46+
*.py[cod]
47+
.venv/
48+
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
1762
.env
18-
.env.local
19-
.env.*.local
63+
.env.*
64+
*.pem
65+
*.key
66+
secrets/
2067

21-
# IDE
22-
.vscode/
23-
.idea/
24-
*.swp
25-
*.swo
26-
*~
27-
.DS_Store
68+
# Test/Coverage
69+
/coverage/
70+
htmlcov/
2871

2972
# Logs
30-
logs/
3173
*.log
32-
npm-debug.log*
33-
yarn-debug.log*
34-
yarn-error.log*
74+
/logs/
3575

36-
# Temporary files
37-
tmp/
38-
temp/
76+
# Temp
77+
/tmp/
3978
*.tmp
40-
41-
# Documentation build
42-
docs/api/
79+
*.bak

0 commit comments

Comments
 (0)