From aee1584dbfeb7f796b7008922a137b939be224f6 Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Wed, 11 Aug 2021 23:04:48 +0200 Subject: [PATCH] chore: add editorconfig --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b73e65e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +curly_bracket_next_line = false +spaces_around_operators = true + +[*.{js,ts}] +quote_type = double + +[*.{markdown,md}] +trim_trailing_whitespace = false + +[*.tsv] +indent_style = tab