Skip to content

Instantly share code, notes, and snippets.

@dlo
Created July 7, 2016 21:14
Show Gist options
  • Save dlo/1beea67908fc06f32b75920b97b0c955 to your computer and use it in GitHub Desktop.
Save dlo/1beea67908fc06f32b75920b97b0c955 to your computer and use it in GitHub Desktop.
KEYWORDS="TODO|FIXME|\?\?\?:|\!\!\!:"
cd "${SRCROOT}"
find . ! \( -path ./Pods -prune \) -type f -name "*.swift" -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