-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure we always run the same golangci-lint version
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ BUILD_DATE := $(shell date +%s) | |
|
||
## lint | ||
lint: | ||
golangci-lint run --config .golangci.yml | ||
go run github.com/golangci/golangci-lint/cmd/[email protected] run --config .golangci.yml | ||
|
||
## lint-fix - auto fix lint errors - for the linters that support auto fix | ||
lint-fix: | ||
golangci-lint run --config .golangci.yml --fix | ||
go run github.com/golangci/golangci-lint/cmd/[email protected] run --fix --config .golangci.yml | ||
|
||
## Go test | ||
test: | ||
|