From 93e235c09110df3c8a6c17ccfd93f3ec86c08adf Mon Sep 17 00:00:00 2001 From: flash555588 Date: Mon, 15 Jun 2026 17:01:26 +0800 Subject: [PATCH] chore(P2): add .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e96c2e7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = tab +indent_size = 4 + +[*.{yml,yaml,json}] +indent_style = space +indent_size = 2 + +[*.{md,mdx}] +trim_trailing_whitespace = false