From 1a42cda60aed8fc6aee79ef6c1b58fbd5e2793f0 Mon Sep 17 00:00:00 2001 From: Mingchen Dai Date: Tue, 10 Sep 2024 08:28:12 +0000 Subject: [PATCH] Added .editorconfig --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ae0df50 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +tab_width = 2 +end_of_line = crlf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[Makefile] +indent_style = tab