From 9a5291007eaeb17405837aba5bfed872c8f23435 Mon Sep 17 00:00:00 2001 From: Zach Date: Sat, 14 Oct 2023 00:30:51 -0400 Subject: [PATCH] Add .editorconfig to specify tab size for HTML & CSS files --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ea13915 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.{html,css}] +indent_style = space +indent_size = 2