From 2b51a60c8efc1da5a27ec3d6a4981448bdaba36f Mon Sep 17 00:00:00 2001 From: filzrev <103790468+filzrev@users.noreply.github.com> Date: Mon, 24 Nov 2025 06:50:07 +0900 Subject: [PATCH] chore: add .editorfile file --- .editorconfig | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..143b9c012c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,30 @@ +root = true + +# All files +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newline = unset + +# JSON files +[*.json] +indent_size = 2 + +# XML files +[*.{xml,resx,ruleset}] +indent_size = 2 + +# .NET project files +[*.{csproj,vbproj,props}] +indent_size = 2 + +# Markdown files +[*.md] +trim_trailing_whitespace = false + +# C# files +[*.cs] +csharp_style_namespace_declarations=file_scoped:suggestion