Remove trailing whitespaces from codebase (#5634)

Removes trailing whitespaces found across the codebase using `find . -type f -exec grep -lE ' +$' {} +`

[skip ci]
This commit is contained in:
Fijxu
2026-02-19 14:28:22 -03:00
committed by GitHub
parent e7f8b15b21
commit fda8d1b528
6 changed files with 13 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
# Crystal linter
# This is a modified version of the pre-commit hook from the crystal repo. https://github.com/crystal-lang/crystal/blob/master/scripts/git/pre-commit
# Please refer to that if you'd like an version that doesn't automatically format staged files.
# Please refer to that if you'd like an version that doesn't automatically format staged files.
changed_cr_files=$(git diff --cached --name-only --diff-filter=ACM | grep '\.cr$')
if [ ! -z "$changed_cr_files" ]; then
if [ -x bin/crystal ]; then