1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-04 03:11:55 +02:00

chore: added a todo task to the Makefile

Added a `todo` task in the `Makefile`, copied
from apex/up.
This commit is contained in:
Carlos Alexandro Becker 2017-10-19 10:50:49 -02:00
parent e9ca883b0b
commit 87ec4781ee
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -52,5 +52,16 @@ static:
--inline-script 'hljs.initHighlightingOnLoad();' \
--inline-style 'pre { padding: 0; }'
# Show to-do items per file.
todo:
@grep \
--exclude-dir=vendor \
--exclude-dir=node_modules \
--exclude=Makefile \
--text \
--color \
-nRo -E ' TODO:.*|SkipNow' .
.PHONY: todo
.DEFAULT_GOAL := build