From 67bd35ed5c0f4949a060c8b8808627d917ce017b Mon Sep 17 00:00:00 2001 From: Evgeny Evseev Date: Wed, 6 Nov 2019 20:53:03 +0300 Subject: [PATCH] add editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..7e55e05d0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# top-most EditorConfig file +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 +indent_style = space + +[*.{js,html,scss}] +indent_size = 2 + +[*.py] +indent_size = 4