Files
go-unifi/.golangci.yaml
Mateusz Filipowicz e79dcb13f0 feat: add logging and support for custom logger (#36)
* feat: add support for logging

* fix linting

* chore: remove old APIError in favor of ServerError
2025-02-23 12:59:46 +01:00

36 lines
524 B
YAML

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