Created
February 6, 2015 14:33
-
-
Save jaminguy/11b1b793eb79a827e169 to your computer and use it in GitHub Desktop.
TODOs as warnings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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