Skip to content

Commit 29a6931

Browse files
committed
chore: RSR sync and mass repository update
1 parent f9c27a4 commit 29a6931

2 files changed

Lines changed: 162 additions & 0 deletions

File tree

.gitattributes

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# RSR-compliant .gitattributes
12
# SPDX-License-Identifier: PMPL-1.0-or-later
23
* text=auto eol=lf
34

@@ -9,3 +10,64 @@
910
*.yml text eol=lf
1011
*.ncl text eol=lf
1112
*.sh text eol=lf
13+
14+
15+
# Source
16+
*.rs text eol=lf diff=rust
17+
*.ex text eol=lf diff=elixir
18+
*.exs text eol=lf diff=elixir
19+
*.jl text eol=lf
20+
*.res text eol=lf
21+
*.resi text eol=lf
22+
*.ada text eol=lf diff=ada
23+
*.adb text eol=lf diff=ada
24+
*.ads text eol=lf diff=ada
25+
*.hs text eol=lf
26+
*.chpl text eol=lf
27+
*.scm text eol=lf
28+
*.a2ml text eol=lf linguist-language=TOML
29+
*.ncl text eol=lf
30+
*.nix text eol=lf
31+
*.zig text eol=lf
32+
33+
34+
# Docs
35+
*.md text eol=lf diff=markdown
36+
*.adoc text eol=lf
37+
*.txt text eol=lf
38+
39+
40+
# Data
41+
*.json text eol=lf
42+
*.yaml text eol=lf
43+
*.yml text eol=lf
44+
*.toml text eol=lf
45+
46+
47+
# Config
48+
.gitignore text eol=lf
49+
.gitattributes text eol=lf
50+
.editorconfig text eol=lf
51+
.tool-versions text eol=lf
52+
justfile text eol=lf
53+
Makefile text eol=lf
54+
Containerfile text eol=lf
55+
56+
57+
# Scripts
58+
*.sh text eol=lf
59+
60+
61+
# Binary
62+
*.png binary
63+
*.jpg binary
64+
*.gif binary
65+
*.pdf binary
66+
*.woff2 binary
67+
*.zip binary
68+
*.gz binary
69+
70+
71+
# Lock files
72+
Cargo.lock text eol=lf -diff
73+
flake.lock text eol=lf -diff

.gitignore

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,105 @@
1+
# RSR-compliant .gitignore
12
/target
23
/reports/
34
/verisimdb-data/
45
/runtime/
56
/panll-event-chain.json
7+
8+
9+
# OS & Editor
10+
.DS_Store
11+
Thumbs.db
12+
*.swp
13+
*.swo
14+
*~
15+
.idea/
16+
.vscode/
17+
18+
19+
# Build
20+
/target/
21+
/_build/
22+
/build/
23+
/dist/
24+
/out/
25+
/zig-out/
26+
/zig-cache/
27+
28+
29+
# Dependencies
30+
/node_modules/
31+
/vendor/
32+
/deps/
33+
/.elixir_ls/
34+
35+
36+
# Rust
37+
38+
# Cargo.lock # Keep for binaries
39+
40+
41+
# Elixir
42+
/cover/
43+
/doc/
44+
*.ez
45+
erl_crash.dump
46+
47+
48+
# Julia
49+
*.jl.cov
50+
*.jl.mem
51+
/Manifest.toml
52+
53+
54+
# ReScript
55+
/lib/bs/
56+
/.bsb.lock
57+
58+
59+
# Python (SaltStack only)
60+
__pycache__/
61+
*.py[cod]
62+
.venv/
63+
64+
65+
# Ada/SPARK
66+
*.ali
67+
/obj/
68+
/bin/
69+
70+
71+
# Haskell
72+
/.stack-work/
73+
/dist-newstyle/
74+
75+
76+
# Chapel
77+
*.chpl.tmp.*
78+
79+
80+
# Secrets
81+
.env
82+
.env.*
83+
*.pem
84+
*.key
85+
secrets/
86+
87+
88+
# Test/Coverage
89+
/coverage/
90+
htmlcov/
91+
92+
93+
# Logs
94+
*.log
95+
/logs/
96+
97+
98+
# Machine-readable locks
99+
.machine_readable/.locks/
100+
101+
102+
# Temp
103+
/tmp/
104+
*.tmp
105+
*.bak

0 commit comments

Comments
 (0)