From 9119265204222b3dcb09cd96398db148a58fc521 Mon Sep 17 00:00:00 2001
From: Nils Knappmeier <npm@knappi.org>
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 00000000..f2bc96b0
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,7 @@
+root = true
+
+[*.js]
+indent_size = 2
+insert_final_newline = true
+trim_trailing_whitespace = true
+
