#!/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