From 95f3c41aad14f302ea34aea3af6f63e6bd91fc8f Mon Sep 17 00:00:00 2001 From: Brian Tremblay Date: Wed, 14 Dec 2022 20:41:14 -0800 Subject: [PATCH] Adds .editorconfig --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f203797 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# For more information about the properties used in +# this file, please see the EditorConfig documentation: +# https://editorconfig.org/ + +root = true + +# all files +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{html,css}] +indent_size = 2 +indent_style = space + +[*.svg] +indent_size = 4