From 55cf918918fb1650eb33bc9a5b706c6e8ceb1201 Mon Sep 17 00:00:00 2001 From: Alex Thiessen Date: Sat, 2 Feb 2019 10:28:24 +0100 Subject: [PATCH] editorconfig: Respect user rules Editorconfig provides the concept of cascading rules, refer to https://editorconfig.org/#file-location. For instance, I use a rule which limits line length in git commit messages which enables `vim` to re-flow the text by a simple command. Setting `root=true` in LT's own `.editorconfig` file prevents any such user-defined rules from being propagated. Remove `root=true` to enable user-defined rules. --- .editorconfig | 2 -- 1 file changed, 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 4dc96bd5..87e50155 100755 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,5 @@ # EditorConfig is awesome: http://EditorConfig.org -root = true - [*] indent_style = space indent_size = 2