1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-16 02:47:03 +02:00
kratos/.golangci.yml
Xudong Cai b44e47b087
refactor: optimize the code and use golangci-lint to check for any errors (#1298)
* feat: optimize the code and use golangci-lint to check for any errors

* fix: TestLogger unit test
2021-08-16 10:35:08 +08:00

14 lines
193 B
YAML

run:
timeout: 5m
modules-download-mode: readonly
skip-files:
- ".*_test\\.go$"
linters:
enable:
- revive
- staticcheck
- govet
- gosimple
- gofmt
- errcheck