From 3604d88767768644b2bfa08f0aeb48445988f942 Mon Sep 17 00:00:00 2001 From: imxyy_soope_ Date: Fri, 28 Nov 2025 18:05:19 +0800 Subject: [PATCH] fmt: add .editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4f395df --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +indent_style = space +end_of_line = lf +charset = utf-8 +insert_final_newline = true + +[*.{rs,toml}] +indent_size = 4 +insert_final_newline = false + +[*.nix] +indent_size = 2 + +[Makefile] +indent_size = 4