From 211649798aa6fc3f11a7c8b6683321e624931344 Mon Sep 17 00:00:00 2001 From: 10sa Date: Fri, 19 May 2023 22:30:49 +0900 Subject: [PATCH 1/2] Create .editorconfig --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..1e80dbbf5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{js, conf, json}] +charset = utf-8 +indent_style = tab +indent_size = 4 \ No newline at end of file From 30e931454a42966b84dd5c2f7d351cda57b93d49 Mon Sep 17 00:00:00 2001 From: 10sa Date: Fri, 19 May 2023 22:38:12 +0900 Subject: [PATCH 2/2] Change tab indent to space indent --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 1e80dbbf5..2a13caebf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,5 +7,5 @@ trim_trailing_whitespace = true [*.{js, conf, json}] charset = utf-8 -indent_style = tab +indent_style = space indent_size = 4 \ No newline at end of file