From 43ca56f8e6133da5b5a66a6859c820269df0f9d6 Mon Sep 17 00:00:00 2001 From: KingRainbow44 Date: Sun, 26 Nov 2023 00:48:02 -0500 Subject: [PATCH] (misc) Add a `.editorconfig` --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..dcb1ff3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +max_line_length = 120 +tab_width = 4 +trim_trailing_whitespace = true + +[{*.json,*.xml,*.yml,*.html}] +indent_size = 2