aboutsummaryrefslogblamecommitdiff
path: root/scripts/assert-todos.sh
blob: be3974a7b0b601db242d8a85c6a92ea1322223a9 (plain) (tree)
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