From dbbc3daa7836dcc2045e5fd5098dca4bae3a9d3a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 22 Jul 2025 22:44:38 +0300 Subject: [PATCH] meta: add editorconfig :x: --- .editorconfig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..30be905 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +tab_width = 2 +trim_trailing_whitespace = true + +[*.md] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = false + +[*.{lock,diff,patch}] +indent_style = unset +indent_size = unset +insert_final_newline = unset +trim_trailing_whitespace = unset +end_of_line = unset + +