From 35d121ab9e1d93af0d21f1c397a279e9ad4cf54c Mon Sep 17 00:00:00 2001 From: TTOzzi Date: Tue, 3 Sep 2024 15:53:02 +0900 Subject: [PATCH] Support .editorConfig for consistent code formatting (#2626) --- .editorConfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorConfig diff --git a/.editorConfig b/.editorConfig new file mode 100644 index 000000000..7bdede315 --- /dev/null +++ b/.editorConfig @@ -0,0 +1,10 @@ +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newline = true +