blob: d33b263eb997b83f82238b85d5a758f726e53d14 (
plain) (
tree)
|
|
#!/usr/bin/env bash
set -Eeuo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
cd ../
# shellcheck disable=2046
if grep -R FIXME $(git ls-files) | \
grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|templates|locale/)'; then
echo "Found dangling FIXME markers on the project."
echo "You should write them down properly on TODOs.org."
exit 1
fi
|