We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-D
With a .golangci.toml containing
.golangci.toml
[linters] enable-all = true disable = [ "dupl", "goconst", "maligned", "golint" ]
and running golangci-lint run -c ../../.golangci.toml -Dtypecheck ./... to also disable typecheck, the previously disabled linters are enabled again.
golangci-lint run -c ../../.golangci.toml -Dtypecheck ./...
typecheck