From 3cd44a1e864bff236673cfa57d08167ea8f318f5 Mon Sep 17 00:00:00 2001 From: pips Date: Thu, 20 Mar 2025 21:08:22 +0100 Subject: [PATCH] chore(lint): add editorconfig file --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5cea03b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[COMMIT_EDITMSG] +indent_size = 4 +indent_style = space +max_line_length = 80 + +[*.patch] +trim_trailing_whitespace = false + +[*.{md,mdx}] +trim_trailing_whitespace = false +indent_size = 2