From 106e01f36fa8dd9bc3eb3a1411bd011a618a2836 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 23 May 2026 16:27:01 +0900 Subject: chore: add editor/toolchain config --- .editorconfig | 12 ++++++++++++ LICENSE.md | 2 ++ README.md | 1 + rust-toolchain.toml | 3 +++ rustfmt.toml | 1 + 5 files changed, 19 insertions(+) create mode 100644 .editorconfig create mode 100644 rust-toolchain.toml create mode 100644 rustfmt.toml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6646a90 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false diff --git a/LICENSE.md b/LICENSE.md index 184bf41..fed39f5 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -20,4 +20,6 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I ## Composer +Shirabe is a port of Composer v2.9.7. + See [composer/LICENSE](composer/LICENSE) for the original Composer license. diff --git a/README.md b/README.md index 1e52dc7..865df00 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ Yet another dependency manager for PHP. +*WORK IN PROGRESS* ## License diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..386fc3c --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "1.94" +components = ["rust-analyzer", "rust-src"] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..3501136 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +style_edition = "2024" -- cgit v1.3.1