Browse Source

DX: Fix detecting trailing spaces (#7216)

Greg Korba 1 year ago
parent
commit
15c32c4178
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dev-tools/check_trailing_spaces.sh

+ 1 - 1
dev-tools/check_trailing_spaces.sh

@@ -2,7 +2,7 @@
 set -eu
 
 files_with_trailing_spaces=$(
-    git grep -EIn "\\s$" \
+    git grep -In "\\s$" \
         ':!doc/rules/*' \
         ':!tests/Fixtures/*' \
     | sort -fh