From 9119265204222b3dcb09cd96398db148a58fc521 Mon Sep 17 00:00:00 2001 From: Nils Knappmeier Date: Fri, 6 Jan 2017 10:14:59 +0100 Subject: [PATCH] Added ".editorconfig"-file that specifies the indent for javascript-files (#1292) * see http://editorconfig.org/ * This file only includes very basic settings. It may be expanded in the future --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..f2bc96b02 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*.js] +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true +