From 52499b8c6ec55ca5f510ea732eb048a4440c905b Mon Sep 17 00:00:00 2001 From: dakrk Date: Fri, 5 Apr 2024 17:18:51 +0100 Subject: [PATCH] Introduce editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..89897b8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = tab +indent_size = 4 + +# why +[*.{html,css}] +indent_style = space + +# WHY +[*.css] +indent_size = 2 \ No newline at end of file