github.com/minio/console@v1.3.0/.golangci.yml (about) 1 linters-settings: 2 golint: 3 min-confidence: 0 4 5 misspell: 6 locale: US 7 8 goheader: 9 values: 10 regexp: 11 copyright-holder: Copyright \(c\) (20\d\d\-20\d\d)|2021|({{year}}) 12 template-path: .license.tmpl 13 14 linters: 15 disable-all: true 16 enable: 17 - goimports 18 - misspell 19 - govet 20 - revive 21 - ineffassign 22 - gosimple 23 - gomodguard 24 - gofmt 25 - unused 26 - staticcheck 27 - unconvert 28 - gocritic 29 - gofumpt 30 - durationcheck 31 32 service: 33 golangci-lint-version: 1.43.0 # use the fixed version to not introduce new linters unexpectedly 34 35 issues: 36 exclude-use-default: false 37 exclude: 38 - should have a package comment 39 # TODO(y4m4): Remove once all exported ident. have comments! 40 - comment on exported function 41 - comment on exported type 42 - should have comment 43 - use leading k in Go names 44 - comment on exported const 45 run: 46 skip-dirs: 47 - pkg/clientgen 48 - pkg/apis/networking.gke.io 49 - api/operations