1
0
mirror of https://github.com/xorcare/testing-go-code-with-postgres.git synced 2025-06-30 23:23:40 +02:00
Files
testing-go-code-with-postgres/.golangci.yml
Vasiliy Vasilyuk ab5f864a78 Enable linter 'testpackage'
This will avoid testing private functions and methods.
2023-11-14 22:35:32 +03:00

17 lines
242 B
YAML

linters:
disable-all: true
enable:
- errcheck
- godot
- goimports
- gosimple
- govet
- ineffassign
- misspell
- staticcheck
- testifylint
- testpackage
- typecheck
- unused
- whitespace