* ci: update golangci-lint to v2 update method: ``` golangci-lint migrate golangci-lint run --fix ``` and fix the last ones manually * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix tests --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
38 lines
582 B
YAML
38 lines
582 B
YAML
version: "2"
|
|
linters:
|
|
enable:
|
|
- goconst
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- revive
|
|
- unconvert
|
|
- unparam
|
|
settings:
|
|
misspell:
|
|
locale: US
|
|
revive:
|
|
rules:
|
|
- name: redundant-build-tag
|
|
exclusions:
|
|
generated: lax
|
|
rules:
|
|
- path: (.+)\.go$
|
|
text: G104
|
|
paths:
|
|
- third_party$
|
|
- builtin$
|
|
- examples$
|
|
issues:
|
|
max-issues-per-linter: 0
|
|
max-same-issues: 0
|
|
formatters:
|
|
enable:
|
|
- gofmt
|
|
exclusions:
|
|
generated: lax
|
|
paths:
|
|
- third_party$
|
|
- builtin$
|
|
- examples$
|