-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.golangci.yml
More file actions
71 lines (67 loc) · 1.32 KB
/
Copy path.golangci.yml
File metadata and controls
71 lines (67 loc) · 1.32 KB
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
version: "2"
linters:
default: none
enable:
- staticcheck
- ineffassign
- unused
- nilerr
- nilnil
- unconvert
- rowserrcheck
- sqlclosecheck
- noctx
- misspell
- errcheck
- errorlint
- bodyclose
- gocritic
- revive
- dupl
- nestif
- depguard
settings:
depguard:
rules:
main:
deny:
- pkg: io/ioutil
desc: "deprecated since Go 1.16: use io and os alternatives"
- pkg: golang.org/x/net/context
desc: "use standard library context package"
- pkg: github.com/pkg/errors
desc: "use standard library errors and fmt.Errorf(%w)"
errcheck:
exclude-functions:
- fmt.Fprint
- fmt.Fprintf
- fmt.Fprintln
revive:
rules:
- name: exported
- name: package-comments
staticcheck:
checks:
- all
- "-QF*"
exclusions:
rules:
- path: _test\.go
linters:
- errcheck
- errorlint
- revive
run:
timeout: 5m
tests: true
modules-download-mode: readonly
relative-path-mode: gomod
issues:
max-issues-per-linter: 0
max-same-issues: 0
output:
formats:
text:
path: stdout
print-linter-name: true
print-issued-lines: true