From b169896a9aac0301d770fd82a3b34acbaacf9eaa Mon Sep 17 00:00:00 2001 From: "Yuichiro Tachibana (Tsuchiya)" Date: Thu, 11 May 2023 17:29:28 +0300 Subject: [PATCH] Fix the wildcard in .editorconfig to match files in nested directories (#4165) * Fix the wildcard in .editorconfig to match files in nested directories * Remove a wrong whitespace in a brace expansion notation in .editorconfig --------- Co-authored-by: pngwn --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 0c3ec85bbb..f4e045fdb9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,8 +1,8 @@ root = true -[{js/*, client/js/*}] +[{js/**,client/js/**}] end_of_line = lf insert_final_newline = true indent_style = tab -tab_width = 2 \ No newline at end of file +tab_width = 2