Improve lint recipe (#76)

Also check for FIXME or TODO in source
This commit is contained in:
Casey Rodarmor 2016-11-12 07:56:13 -08:00 committed by GitHub
parent 6adf2fda6c
commit 6c5f4eea62

View File

@ -49,8 +49,9 @@ install-nightly:
sloc:
@cat src/*.rs | wc -l
long:
! grep --color -n '.\{100\}' src/*.rs
lint:
! grep --color -En 'FIXME|TODO' src/*.rs
! grep --color -En '.{100}' src/*.rs
nop: