From f5463091695f148969067887e9ed61d5950fd1a1 Mon Sep 17 00:00:00 2001 From: Jan Lohage Date: Thu, 6 Jun 2019 12:59:31 +0200 Subject: [PATCH] add .editorconfig file to prevent line ending problems. --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..71e8eb45 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# https://EditorConfig.org + +root = true + +[*.{js,json}] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true