Co-authored-by: techknowlogick <hello@techknowlogick.com>
Co-committed-by: techknowlogick <hello@techknowlogick.com>
This commit is contained in:
techknowlogick
2023-09-08 01:40:02 +00:00
committed by techknowlogick
parent 2d57e07dc7
commit b868d30434
132 changed files with 178 additions and 398 deletions

View File

@ -67,7 +67,7 @@ vet:
.PHONY: lint
lint: install-lint-tools
$(GO) run github.com/mgechev/revive@latest -config .revive.toml ./... || exit 1
$(GO) run github.com/mgechev/revive@v1.3.2 -config .revive.toml ./... || exit 1
.PHONY: misspell-check
misspell-check: install-lint-tools
@ -160,7 +160,7 @@ install-release-tools:
install-lint-tools:
@hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) install github.com/mgechev/revive@latest; \
$(GO) install github.com/mgechev/revive@v1.3.2; \
fi
@hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) install github.com/client9/misspell/cmd/misspell@latest; \