mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.1 KiB
72 lines
1.1 KiB
formatters:
|
|
enable:
|
|
- gofmt
|
|
- goimports
|
|
|
|
exclusions:
|
|
generated: lax
|
|
|
|
settings:
|
|
gofmt:
|
|
simplify: true
|
|
|
|
goimports:
|
|
local-prefixes:
|
|
- helm.sh/helm/v4
|
|
|
|
linters:
|
|
default: none
|
|
|
|
enable:
|
|
- depguard
|
|
- dupl
|
|
- gomodguard
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- nakedret
|
|
- revive
|
|
- staticcheck
|
|
- thelper
|
|
- unused
|
|
- usestdlibvars
|
|
- usetesting
|
|
|
|
exclusions:
|
|
generated: lax
|
|
|
|
presets:
|
|
- comments
|
|
- common-false-positives
|
|
- legacy
|
|
- std-error-handling
|
|
|
|
rules: []
|
|
|
|
warn-unused: true
|
|
|
|
settings:
|
|
depguard:
|
|
rules:
|
|
Main:
|
|
deny:
|
|
- pkg: github.com/hashicorp/go-multierror
|
|
desc: "use errors instead"
|
|
- pkg: github.com/pkg/errors
|
|
desc: "use errors instead"
|
|
|
|
dupl:
|
|
threshold: 400
|
|
|
|
gomodguard:
|
|
blocked:
|
|
modules:
|
|
- github.com/evanphx/json-patch:
|
|
recommendations:
|
|
- github.com/evanphx/json-patch/v5
|
|
|
|
run:
|
|
timeout: 10m
|
|
|
|
version: "2"
|