Files
go-unifi/.golangci.yaml
Joshua Spence 7ebc6da3f8 Enable more golangci-lint rules (#227)
* WIP

* Enable `paralleltest` linter

* Enable `perfsprint` linter
2024-11-22 17:37:44 +11:00

35 lines
508 B
YAML

---
linters:
enable-all: true
disable:
- 'depguard'
- 'mnd'
- 'nlreturn'
- 'tagliatelle'
# Temporary
- 'cyclop'
- 'dupl'
- 'err113'
- 'exhaustruct'
- 'forbidigo'
- 'funlen'
- 'gochecknoglobals'
- 'gocognit'
- 'goconst'
- 'gocritic'
- 'gocyclo'
- 'godox'
- 'gosec'
- 'lll'
- 'maintidx'
- 'nestif'
- 'revive'
- 'stylecheck'
- 'varnamelen'
- 'wrapcheck'
- 'wsl'
# Deprecated
- 'exportloopref'