github.com/arr-ai/hash@v0.8.0/.golangci.yml (about) 1 linters-settings: 2 errcheck: 3 check-blank: true 4 govet: 5 check-shadowing: true 6 enable-all: true 7 golint: 8 min-confidence: 0 9 goimports: 10 local-prefixes: github.com/arr-ai/frozen 11 maligned: 12 suggest-new: true 13 dupl: 14 threshold: 100 15 lll: 16 line-length: 120 17 goimports: 18 local-prefixes: github.com/golangci/golangci-lint 19 gocritic: 20 enabled-tags: 21 - diagnostic 22 - experimental 23 - opinionated 24 - performance 25 - style 26 27 linters: 28 # please, do not use `enable-all`: it's deprecated and will be removed soon. 29 # inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint 30 disable-all: true 31 enable: 32 - bodyclose 33 - deadcode 34 - depguard 35 - dogsled 36 - dupl 37 - errcheck 38 - funlen 39 # - gochecknoglobals 40 - gochecknoinits 41 - gocognit 42 # - godox 43 - goconst 44 - gocritic 45 - gocyclo 46 - gofmt 47 - goimports 48 - golint 49 - gosec 50 - gosimple 51 - govet 52 - ineffassign 53 - interfacer 54 - lll 55 - maligned 56 - misspell 57 - nakedret 58 - prealloc 59 - scopelint 60 - staticcheck 61 - structcheck 62 - stylecheck 63 - typecheck 64 - unconvert 65 - unparam 66 - unused 67 - varcheck 68 - whitespace 69 # - wsl