Merge pull request #302 from desimone/bugs/staple-golangci-version

deployment: staple linter versions
This commit is contained in:
Bobby DeSimone 2019-09-12 16:16:57 -07:00 committed by GitHub
commit 014d1e6e2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 6 deletions

View file

@ -1,7 +1,7 @@
# forked from istio
service:
# When updating this, also update bin/linters.sh accordingly
golangci-lint-version: 1.17.x # use the fixed version to not introduce new linters unexpectedly
golangci-lint-version: 1.18.x # use the fixed version to not introduce new linters unexpectedly
run:
# timeout for analysis, e.g. 30s, 5m, default is 1m
deadline: 5m
@ -37,6 +37,7 @@ linters:
- scopelint
- maligned
- interfacer
- funlen
fast: false
linters-settings:

View file

@ -27,10 +27,17 @@ CTIMEVAR=-X $(PKG)/internal/version.GitCommit=$(GITCOMMIT) \
-X $(PKG)/internal/version.ProjectURL=$(PKG)
GO_LDFLAGS=-ldflags "-s -w $(CTIMEVAR)"
GOOSARCHES = linux/amd64 darwin/amd64 windows/amd64
GOLANGCI_VERSION = v1.18.0 # .... for some reason v1.18.0 misses?
.PHONY: all
all: clean lint spellcheck test build ## Runs a clean, build, fmt, lint, test, and vet.
all: clean build-deps test lint spellcheck build ## Runs a clean, build, fmt, lint, test, and vet.
.PHONY: build-deps
build-deps: ## Install build dependencies
@echo "==> $@"
@cd /tmp; GO111MODULE=on go get -u github.com/client9/misspell/cmd/misspell
@cd /tmp; GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_VERSION}
.PHONY: docs
docs: ## Start the vuepress docs development server
@ -50,7 +57,6 @@ build: ## Builds dynamic executables and/or packages.
.PHONY: lint
lint: ## Verifies `golint` passes.
@echo "==> $@"
@GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
@golangci-lint run ./...
.PHONY: test
@ -61,7 +67,6 @@ test: ## Runs the go tests.
.PHONY: spellcheck
spellcheck: # Spellcheck docs
@echo "==> Spell checking docs..."
@GO111MODULE=off go get -u github.com/client9/misspell/cmd/misspell
@misspell -error -source=text docs/