Skip to content

Commit d0a550a

Browse files
Testclaude
andcommitted
chore: add missing dotfiles (.editorconfig, .tool-versions)
Add RSR standard files: - .editorconfig - Editor configuration for consistent formatting - .tool-versions - asdf tool versions (Rust 1.84.0, Node 22, Deno 2.1.4) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 87de32b commit d0a550a

2 files changed

Lines changed: 83 additions & 0 deletions

File tree

.editorconfig

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# RSR-template-repo - Editor Configuration
2+
# https://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
end_of_line = lf
9+
indent_size = 2
10+
indent_style = space
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false
16+
17+
[*.adoc]
18+
trim_trailing_whitespace = false
19+
20+
[*.rs]
21+
indent_size = 4
22+
23+
[*.ex]
24+
indent_size = 2
25+
26+
[*.exs]
27+
indent_size = 2
28+
29+
[*.zig]
30+
indent_size = 4
31+
32+
[*.ada]
33+
indent_size = 3
34+
35+
[*.adb]
36+
indent_size = 3
37+
38+
[*.ads]
39+
indent_size = 3
40+
41+
[*.hs]
42+
indent_size = 2
43+
44+
[*.res]
45+
indent_size = 2
46+
47+
[*.resi]
48+
indent_size = 2
49+
50+
[*.ncl]
51+
indent_size = 2
52+
53+
[*.rkt]
54+
indent_size = 2
55+
56+
[*.scm]
57+
indent_size = 2
58+
59+
[*.nix]
60+
indent_size = 2
61+
62+
[Justfile]
63+
indent_style = space
64+
indent_size = 4
65+
66+
[justfile]
67+
indent_style = space
68+
indent_size = 4

.tool-versions

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
2+
# asdf tool versions for WokeLang development
3+
4+
# Rust toolchain
5+
rust 1.84.0
6+
7+
# For ReScript frontend (site/)
8+
nodejs 22.12.0
9+
deno 2.1.4
10+
11+
# Optional: Idris2 for ABI work
12+
# idris2 0.7.0
13+
14+
# Optional: Zig for FFI work
15+
# zig 0.13.0

0 commit comments

Comments
 (0)