From c5c3d940fea303475ef3dba82a3a780a5c341020 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Tue, 20 Jun 2017 08:22:22 +0200 Subject: [PATCH] Removed root = true from .editorconfig to allow user settings. --- .editorconfig | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 087559332a7..1a71ebf75dc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,13 +1,15 @@ -root = true - [*] indent_style = spaces insert_final_newline = true charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true +indent_size = 4 [*.md] trim_trailing_whitespace = false indent_style = spaces -indent_size = 4 + +[*.{json,yml,toml}] +indent_style = space +indent_size = 2 -- GitLab