dolphin/Tools/lint.sh

34 lines
763 B
Bash
Raw Normal View History

#! /bin/bash
#
# Linter script that checks for common style issues in Dolphin's codebase.
fail=0
2017-05-08 18:20:42 +00:00
# Loop through each modified file.
for f in $(git diff --name-only --diff-filter=ACMRTUXB --cached); do
2017-05-08 18:20:42 +00:00
# Filter them.
if ! echo "${f}" | egrep -q "[.](cpp|h|mm)$"; then
continue
fi
if ! echo "${f}" | egrep -q "^Source/Core"; then
continue
fi
2017-05-08 18:20:42 +00:00
# Check for clang-format issues.
d=$(diff -u "${f}" <(clang-format ${f}))
if ! [ -z "${d}" ]; then
echo "!!! ${f} not compliant to coding style, here is the fix:"
echo "${d}"
fail=1
fi
2017-05-08 18:20:42 +00:00
# Check for newline at EOF.
if [ -n "$(tail -c 1 ${f})" ]; then
echo "!!! ${f} not compliant to coding style:"
echo "Missing newline at end of file"
fail=1
fi
done
exit ${fail}