Skip to content

Instantly share code, notes, and snippets.

@jaminguy
Created February 6, 2015 14:33
Show Gist options
  • Select an option

  • Save jaminguy/11b1b793eb79a827e169 to your computer and use it in GitHub Desktop.

Select an option

Save jaminguy/11b1b793eb79a827e169 to your computer and use it in GitHub Desktop.
TODOs as warnings
KEYWORDS="TODO:|FIXME:|\?\?\?:|\!\!\!:"
git ls-files '*.h' '*.m' '*.swift' -z | \
xargs -0 egrep --with-filename --line-number --only-matching "($KEYWORDS).*\$" | \
perl -p -e "s/($KEYWORDS)/ warning: \$1/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment