-
Notifications
You must be signed in to change notification settings - Fork 6
/
.golangci.yml
83 lines (79 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
linters:
enable:
- unconvert
- unparam
- revive
- depguard
- misspell
- ineffassign
- typecheck
- varcheck
- unused
- structcheck
- deadcode
- gosimple
- goimports
- errcheck
- staticcheck
- stylecheck
- gosec
- asciicheck
- exportloopref
- makezero
linters-settings:
revive:
ignore-generated-header: false
severity: error
confidence: 0.8
error-code: -1
warning-code: -1
rules:
- name: blank-imports
- name: context-as-argument
- name: dot-imports
- name: error-return
- name: error-strings
- name: error-naming
- name: exported
- name: if-return
- name: var-naming
- name: package-comments
- name: range
# - name: receiver-naming TODO disable it because it can't handle generics
- name: indent-error-flow
- name: superfluous-else
- name: modifies-parameter
- name: unreachable-code
depguard:
list-type: blacklist
include-go-root: false
packages:
- log
- github.com/juju/errors
packages-with-error-message:
# specify an error message to output when a blacklisted package is used
- log: "logging is allowed only by pingcap/log"
- github.com/juju/errors: "error handling is allowed only by pingcap/errors"
staticcheck:
checks: ["S1002","S1004","S1007","S1009","S1010","S1012","S1019","S1020","S1021","S1024","S1030","SA2*","SA3*","SA4009","SA5*","SA6000","SA6001","SA6005", "-SA2002"]
stylecheck:
checks: ["-ST1003"]
gosec:
excludes:
- G404
- G601
errcheck:
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
check-blank: true
issues:
exclude-rules:
- path: _test\.go
linters:
- errcheck
- gosec
- makezero
include:
- EXC0012 # exported (.+) should have comment( \(or a comment on this block\))? or be unexported)
- EXC0014 # comment on exported (.+) should be of the form "(.+)..."
run:
go: 1.18