We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d401b29 commit 427eeb7Copy full SHA for 427eeb7
.golangci.yml
@@ -31,6 +31,10 @@ linters:
31
- wsl
32
- exhaustivestruct
33
- varnamelen
34
+ - maligned //deprecated
35
+ - scopelint //deprecated
36
+ - golint //deprecated
37
+ - interfacer //deprecated
38
issues:
39
exclude-use-default: false
40
exclude:
Makefile
@@ -83,7 +83,7 @@ FILES = $(shell find . -type f -name '*.go' -not -path "./vendor/*")
83
84
format: ## Format source code.
85
go mod tidy
86
- bin/gofumpt -l -w -s $(FILES)
+ bin/gofumpt -l -w $(FILES)
87
bin/goimports -local github.com/percona/mongodb_exporter -l -w $(FILES)
88
89
check: ## Run checks/linters
0 commit comments