From 6900984e46c73289ed5040f0d26f1fc1c8a8ac51 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 22 Mar 2026 23:57:19 +0300 Subject: [PATCH] meta: set up editorconfig Signed-off-by: NotAShelf Change-Id: Ie44e5a7239a053d674e6aa06e14c3ce56a6a6964 --- .editorconfig | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..473fe3a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,32 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.rs] +indent_style = space +indent_size = 2 + +[justfile] +indent_style = space +indent_size = 2 + +[*.toml] +indent_style = space +indent_size = 2 + +[*.md] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = false + +[*.nix] +indent_style = space +indent_size = 2 + +[*.scss] +indent_style = space +indent_size = 2