From c67b369d8363a0264d79bf3571c287534abfe1e9 Mon Sep 17 00:00:00 2001 From: Florent Chehab Date: Thu, 7 May 2020 21:40:52 +0200 Subject: [PATCH] feat: added .editorconfig --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..76617ce --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[{*.js,*.css}] +indent_size = 4