Fix format errors
All checks were successful
Flare Microsystems Git/FlarePublic/gitea-themes/pipeline/pr-master This commit looks good

This commit is contained in:
Vulpovile
2025-01-11 15:47:18 -08:00
parent 5c62ee577c
commit accb2a9fc5

View File

@@ -7,25 +7,25 @@ PROBLEMS=""
# Pass the files to grep and sed
for file in $FILES; do
# Check for lines with spaces
GREP_RESULT=$(grep -nrP '^[ ]+' "$file")
if [ -n "$GREP_RESULT" ]; then
PROBLEMS="${PROBLEMS}Space indentation in file $file:"$'\n'"$GREP_RESULT"$'\n\n\n' # Append the result to PROBLEMS
fi
# Check for lines with spaces
GREP_RESULT=$(grep -nrP '^[ ]+' "$file")
if [ -n "$GREP_RESULT" ]; then
PROBLEMS="${PROBLEMS}Space indentation in file $file:"$'\n'"$GREP_RESULT"$'\n\n\n' # Append the result to PROBLEMS
fi
# Check for lines with mixed tabs and spaces
GREP_RESULT=$(grep -nrP '^\t+ +' "$file")
if [ -n "$GREP_RESULT" ]; then
PROBLEMS="${PROBLEMS}Mixed indentation in file $file:"$'\n'"$GREP_RESULT"$'\n\n\n' # Append the result to PROBLEMS
fi
# Check for lines with mixed tabs and spaces
GREP_RESULT=$(grep -nrP '^\t+ +' "$file")
if [ -n "$GREP_RESULT" ]; then
PROBLEMS="${PROBLEMS}Mixed indentation in file $file:"$'\n'"$GREP_RESULT"$'\n\n\n' # Append the result to PROBLEMS
fi
done
# Check if there were any problems
if [ -n "$PROBLEMS" ]; then
echo "Indentation issues detected. Please fix the above lines."
echo "$PROBLEMS"
exit 1
echo "Indentation issues detected. Please fix the above lines."
echo "$PROBLEMS"
exit 1
else
echo "No indentation issues detected."
exit 0
echo "No indentation issues detected."
exit 0
fi