blob: be3974a7b0b601db242d8a85c6a92ea1322223a9 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh -eux
if git grep FIXME | grep -Ev '^(vendor/|scripts/assert-todos.sh|locale/)'; then
echo "Found dangling FIXME markers on the project."
echo "You should write them down properly on TODOs.org."
exit 1
fi
|