From 55672410cde75ea46b593f56ad8b4efdbb4c8e82 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 19 Jul 2017 20:23:02 -0300 Subject: [PATCH] own Taskfile: small improvement of lint task --- Taskfile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 1ddedd31..43a703e5 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -27,9 +27,8 @@ clean: lint: desc: Runs golint cmds: - - golint . - - golint ./execext - - golint ./cmd/task + - golint {{.GO_PACKAGES}} + silent: true test: desc: Runs test suite @@ -52,3 +51,4 @@ todo: desc: Prints TODO comments present in the code cmds: - astitodo {{.GO_PACKAGES}} + silent: true