aboutsummaryrefslogblamecommitdiff
path: root/scripts/assert-todos.sh
blob: df7a96d180a8a12f16f7aec7f4d9a3bdc1f50736 (plain) (tree)
1
2
3
4
5
6
7
              
 
                                                                                     



                                                          
#!/bin/sh -eux

if git grep FIXME | grep -Ev '^(vendor/|.git/|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