From 6077df1f95004e390749af279618ccee8aa32b0b Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Thu, 31 Oct 2019 09:26:56 -0500 Subject: [PATCH] Add .editorconfig (#450) --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..ae3f20167 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{package.json,.travis.yml}] +indent_style = space +indent_size = 2 + +[*.sh] +end_of_line = lf +indent_size = 4