From f18861eec8358b3f1a7139c210fc801bbcda76c7 Mon Sep 17 00:00:00 2001 From: thiemowmde Date: Tue, 27 Feb 2024 17:35:16 +0100 Subject: Fix .editorconfig for tests/parser/ directory My IDE (PHPStorm) started messing the files in this directory up because the rule in .editorconfig doesn't match. The tests directory is directly in the root where the .editorconfig file also lives. There is no directory before `tests/` that would satisfy the `**/` pattern. Bug: T278066 Change-Id: Ie6d9c71f169a259475e3f3eae2674d6994e2f264 --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig index 28a378b1b9f7..3d4d8e3c5c13 100644 --- a/.editorconfig +++ b/.editorconfig @@ -27,5 +27,5 @@ indent_size = 2 # Trailing whitespace is intended in parser test files # T278066 -[**/tests/parser/*.txt] +[tests/parser/*.txt] trim_trailing_whitespace = false -- cgit v1.2.3