diff options
author | thiemowmde <thiemo.kreuz@wikimedia.de> | 2024-02-27 17:35:16 +0100 |
---|---|---|
committer | thiemowmde <thiemo.kreuz@wikimedia.de> | 2024-02-27 17:35:16 +0100 |
commit | f18861eec8358b3f1a7139c210fc801bbcda76c7 (patch) | |
tree | 4c7fd3d3cceff4c87485c17c4f1fcb409e24e07a /.editorconfig | |
parent | 58fdf9d6603dae66776c557a6705ce9a6e5cb9ff (diff) | |
download | mediawikicore-f18861eec8358b3f1a7139c210fc801bbcda76c7.tar.gz mediawikicore-f18861eec8358b3f1a7139c210fc801bbcda76c7.zip |
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
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |