From fe0bcc92c8c593d5e2b45ffb0d1253c3aa55eb72 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Mon, 28 Jul 2025 16:15:32 -0700 Subject: [PATCH] editorconfig: set root > When opening a file, EditorConfig plugins look for a file named .editorconfig (all lowercase) in the directory of the opened file and in every parent directory. A search for .editorconfig files will stop if the root filepath is reached or an EditorConfig file with root=true is found. > > -- https://editorconfig.org/#file-location --- .editorconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.editorconfig b/.editorconfig index 88deaf46..ee323332 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,5 @@ +root = true + [*.sh] indent_style = space indent_size = 2