From 7f3f302820b03ae2f1283cc4370936f8392b48d2 Mon Sep 17 00:00:00 2001 From: pips Date: Mon, 17 Mar 2025 22:09:25 +0100 Subject: [PATCH] chore(lint): add editorconfig file --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..bc111a5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.{yml,yaml}] +indent_size = 2 + +[COMMIT_EDITMSG] +indent_size = 4 +indent_style = space +max_line_length = 80