Skip to content

Instantly share code, notes, and snippets.

@sugarmo
Created October 9, 2013 09:19
Show Gist options
  • Select an option

  • Save sugarmo/6898549 to your computer and use it in GitHub Desktop.

Select an option

Save sugarmo/6898549 to your computer and use it in GitHub Desktop.
Warn for TODO or FIXME comments.
KEYWORDS="TODO:|FIXME:|\?\?\?:|\!\!\!:"
find "${SRCROOT}" -ipath "${SRCROOT}/pods" -prune -o \( -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