Skip to content

Instantly share code, notes, and snippets.

@doskoi
Created January 21, 2012 15:12
Show Gist options
  • Save doskoi/1653030 to your computer and use it in GitHub Desktop.
Save doskoi/1653030 to your computer and use it in GitHub Desktop.
Turn FIXME, TODO, and !!! comments into compiler warnings within xcode
KEYWORDS="TODO|FIXME|\?\?\?:|\!\!\!:"
find ${SRCROOT} \( -name "*.h" -or -name "*.m" \) -print0 | \
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