mirror of
https://github.com/fumiama/gozel.git
synced 2026-06-05 00:10:24 +08:00
41 lines
635 B
YAML
41 lines
635 B
YAML
version: "2"
|
|
|
|
formatters:
|
|
enable:
|
|
- gofmt
|
|
- goimports
|
|
|
|
linters:
|
|
default: none
|
|
enable:
|
|
- errcheck
|
|
- staticcheck
|
|
- govet
|
|
- ineffassign
|
|
- unused
|
|
- misspell
|
|
- unconvert
|
|
- revive
|
|
exclusions:
|
|
rules:
|
|
- path: \.cpp$
|
|
linters:
|
|
- typecheck
|
|
- path: ^cmd/
|
|
linters:
|
|
- errcheck
|
|
- staticcheck
|
|
- govet
|
|
- ineffassign
|
|
- unused
|
|
- misspell
|
|
- unconvert
|
|
- revive
|
|
- linters:
|
|
- errcheck
|
|
source: "^\\s*defer "
|
|
|
|
issues:
|
|
max-issues-per-linter: 0
|
|
max-same-issues: 0
|