From 676252d37f7109656d0974c1d2672be90f6a6c9a Mon Sep 17 00:00:00 2001 From: MacFJA Date: Tue, 14 Sep 2021 19:38:11 +0200 Subject: [PATCH] Add editorconfig to set default indentation to tab + charset to utf-8 + Unix style end of line --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6655e6b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[/src/**{.svelte,.js,.ts,.svx,.html,.json}] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = tab