12345678910111213141516171819202122232425262728293031323334353637383940 |
- # More info on config here: https://golangci-lint.run/usage/configuration/#config-file
- run:
- skip-dirs:
- - build
- - frontend
- - scripts
- output:
- format: colored-line-number
- print-issued-lines: true
- print-linter-name: true
- linters-settings:
- govet:
- check-shadowing: true
- revive:
- min-confidence: 0
- goconst:
- min-len: 2
- min-occurrences: 2
- linters:
- disable-all: true
- enable:
- - govet
- - ineffassign
- - typecheck
- - errcheck
- - goconst
- - goimports
- - gosec
- - revive
- - gocritic
- - prealloc
- issues:
- exclude-rules:
- - linters:
- - errcheck
- text: "tx.Rollback"
|