storj.io/minio@v0.0.0-20230509071714-0cbc90f649b1/.golangci.yml (about) 1 linters-settings: 2 golint: 3 min-confidence: 0 4 5 misspell: 6 locale: US 7 8 linters: 9 disable-all: true 10 enable: 11 - typecheck 12 - goimports 13 - misspell 14 - govet 15 - golint 16 - ineffassign 17 - gosimple 18 - deadcode 19 - structcheck 20 - gomodguard 21 - gofmt 22 23 issues: 24 exclude-use-default: false 25 exclude: 26 - should have a package comment 27 - error strings should not be capitalized or end with punctuation or a newline 28 29 run: 30 skip-dirs: 31 - pkg/rpc 32 - pkg/argon2 33 34 service: 35 golangci-lint-version: 1.20.0 # use the fixed version to not introduce new linters unexpectedly