From 9d56042fc94ef7bed05cc1ed226752f1e60ef06e Mon Sep 17 00:00:00 2001 From: SmartFlow Developer Date: Sat, 17 Jan 2026 08:29:29 +0100 Subject: [PATCH] Add .editorconfig for consistent code formatting --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2ce8f7e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig helps maintain consistent coding styles +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.sol] +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab