Skip to content

Commit 4d74c7b

Browse files
committed
chore: RSR sync and mass repository update
1 parent d52dd1b commit 4d74c7b

2 files changed

Lines changed: 142 additions & 0 deletions

File tree

.gitattributes

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
2+
# RSR-compliant .gitattributes
3+
4+
* text=auto eol=lf
5+
6+
# Source
7+
*.rs text eol=lf diff=rust
8+
*.ex text eol=lf diff=elixir
9+
*.exs text eol=lf diff=elixir
10+
*.jl text eol=lf
11+
*.res text eol=lf
12+
*.resi text eol=lf
13+
*.ada text eol=lf diff=ada
14+
*.adb text eol=lf diff=ada
15+
*.ads text eol=lf diff=ada
16+
*.hs text eol=lf
17+
*.chpl text eol=lf
18+
*.scm text eol=lf
19+
*.a2ml text eol=lf linguist-language=TOML
20+
*.ncl text eol=lf
21+
*.nix text eol=lf
22+
*.zig text eol=lf
23+
24+
# Docs
25+
*.md text eol=lf diff=markdown
26+
*.adoc text eol=lf
27+
*.txt text eol=lf
28+
29+
# Data
30+
*.json text eol=lf
31+
*.yaml text eol=lf
32+
*.yml text eol=lf
33+
*.toml text eol=lf
34+
35+
# Config
36+
.gitignore text eol=lf
37+
.gitattributes text eol=lf
38+
.editorconfig text eol=lf
39+
.tool-versions text eol=lf
40+
justfile text eol=lf
41+
Makefile text eol=lf
42+
Containerfile text eol=lf
43+
44+
# Scripts
45+
*.sh text eol=lf
46+
47+
# Binary
48+
*.png binary
49+
*.jpg binary
50+
*.gif binary
51+
*.pdf binary
52+
*.woff2 binary
53+
*.zip binary
54+
*.gz binary
55+
56+
# Lock files
57+
Cargo.lock text eol=lf -diff
58+
flake.lock text eol=lf -diff

.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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+
13+
# Build
14+
/target/
15+
/_build/
16+
/build/
17+
/dist/
18+
/out/
19+
/zig-out/
20+
/zig-cache/
21+
22+
# Dependencies
23+
/node_modules/
24+
/vendor/
25+
/deps/
26+
/.elixir_ls/
27+
28+
# Rust
29+
# Cargo.lock # Keep for binaries
30+
31+
# Elixir
32+
/cover/
33+
/doc/
34+
*.ez
35+
erl_crash.dump
36+
37+
# Julia
38+
*.jl.cov
39+
*.jl.mem
40+
/Manifest.toml
41+
42+
# ReScript
43+
/lib/bs/
44+
/.bsb.lock
45+
46+
# Python (SaltStack only)
47+
__pycache__/
48+
*.py[cod]
49+
.venv/
50+
51+
# Ada/SPARK
52+
*.ali
53+
/obj/
54+
/bin/
55+
56+
# Haskell
57+
/.stack-work/
58+
/dist-newstyle/
59+
60+
# Chapel
61+
*.chpl.tmp.*
62+
63+
# Secrets
64+
.env
65+
.env.*
66+
*.pem
67+
*.key
68+
secrets/
69+
70+
# Test/Coverage
71+
/coverage/
72+
htmlcov/
73+
74+
# Logs
75+
*.log
76+
/logs/
77+
78+
# Machine-readable locks
79+
.machine_readable/.locks/
80+
81+
# Temp
82+
/tmp/
83+
*.tmp
84+
*.bak

0 commit comments

Comments
 (0)