-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yml
66 lines (63 loc) · 2.31 KB
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
run:
modules-download-mode: readonly
allow-parallel-runners: true
# https://golangci-lint.run/usage/linters/
linters:
enable-all: true
disable:
- deadcode # deprecated (since v1.49.0) due to: The owner seems to have abandoned the linter. Replaced by unused.
- depguard # unnecessary
- dupl # too many unnecessary detections
- exhaustruct # https://github.com/GaijinEntertainment/go-exhaustruct
- exhaustivestruct # https://github.com/mbilski/exhaustivestruct
- gci # unnecessary
- goconst # unnecessary
- godot # unnecessary
- godox # unnecessary
- golint # deprecated https://github.com/golang/lint
- gomnd # deprecated https://github.com/tommy-muehle/go-mnd
- ifshort # for readability
- interfacer # deprecated https://github.com/mvdan/interfacer
- interfacebloat # unnecessary
- lll # unnecessary
- maligned # deprecated https://github.com/mdempsky/maligned
- nlreturn # ignore "return with no blank line before"
- nolintlint # unnecessary
- nonamedreturns # unnecessary
- nosnakecase # for environment variable key
- scopelint # deprecated (since v1.39.0) due to: The repository of the linter has been deprecated by the owner. Replaced by exportloopref.
- structcheck # deprecated (since v1.49.0) due to: The owner seems to have abandoned the linter. Replaced by unused.
- varcheck # deprecated (since v1.49.0) due to: The owner seems to have abandoned the linter. Replaced by unused.
- varnamelen # unnecessary
- wsl # ignore "declarations should never be cuddled"
linters-settings:
goimports:
local-prefixes: "github.com/kunitsucom/util.go"
wrapcheck:
ignoreSigs:
- func errors.New(text string) error
- func fmt.Errorf(format string, a ...any) error
- func fmt.Errorf(format string, a ...interface{}) error
- func github.com/kunitsucom/util.go/errors.Errorf(format string, a ...interface{}) error
issues:
exclude-rules:
- path: _test\.go
linters:
- canonicalheader
- containedctx
- cyclop
- dupl
- funlen
- gochecknoglobals
- gocognit
- goconst
- gocyclo
- goerr113
- gosec
- ireturn
- maintidx
- noctx
- revive
- testpackage
- varnamelen
- wrapcheck