diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-01-13 11:13:59 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-01-13 11:20:44 +0100 |
commit | 17988f239e0b889a8d0b0fcb7f91380b57a9673e (patch) | |
tree | 1ea5aba3fab290b048ebed0e42addfb6d87d4c37 /Makefile | |
parent | 9e2e4d7615311b38b1e553af32a5666888ef3c96 (diff) | |
download | podman-17988f239e0b889a8d0b0fcb7f91380b57a9673e.tar.gz podman-17988f239e0b889a8d0b0fcb7f91380b57a9673e.tar.bz2 podman-17988f239e0b889a8d0b0fcb7f91380b57a9673e.zip |
remove `.tool/lint`
We should only use `make golangci-lint` which is also used in `make
validate`. However, we need to enable more linters which we can
do step by step in future commits.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -148,9 +148,7 @@ ifeq ("$(wildcard $(GOPKGDIR))","") endif touch $@ -lint: .gopathok varlink_generate ## Execute the source code linter - @echo "checking lint" - @./.tool/lint +lint: golangci-lint golangci-lint: .gopathok varlink_generate .install.golangci-lint $(GOBIN)/golangci-lint run --tests=false --skip-files swagger.go |