Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vinhnx/fc4bc0ff97943713d87bcd0736d9dfd8 to your computer and use it in GitHub Desktop.
Save vinhnx/fc4bc0ff97943713d87bcd0736d9dfd8 to your computer and use it in GitHub Desktop.
Highlight TODO and FIXME as warnings in Xcode 8 (add as script build phase)
TAGS="TODO:|FIXME:"
SKIPDIRS="/Pods"
find "${SRCROOT}/" -type f \( -name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 \
| xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" \
| grep -v "$SKIPDIRS" \
| perl -p -e "s/($TAGS)/ warning: \$1/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment