From aac6f07a2d9eda62015c5e70c5f857c9d9122d30 Mon Sep 17 00:00:00 2001 From: biel Date: Sat, 21 Oct 2023 12:01:17 +0200 Subject: [PATCH] feat: added editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..484a12c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +end_of_line = lf + +[*.{js,ts,tsx,jsx,css,scss,html,json,yml,yaml,md}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false +max_line_length = off