From 5ea1d33fdf5a97f7c9d3c51bb0d56b0479b3c78c Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 15 Jul 2022 16:28:30 +0530 Subject: [PATCH] chore: add editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e1e68c5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# Root editor config file +root = true + +# Common settings +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +# indentation settings +[{*.js,*.css,*.html}] +indent_style = tab +indent_size = 4