-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.golangci.yml
77 lines (74 loc) · 1.51 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
run:
tests: true
timeout: 10m
allow-parallel-runners: true
linters:
disable-all: true
# Enable specific linter
# https://golangci-lint.run/usage/linters/#enabled-by-default-linters
enable:
- asciicheck
- bidichk
- bodyclose
- canonicalheader
- durationcheck
- errcheck
- errname
- copyloopvar
- fatcontext
- forcetypeassert
- gci
- goconst
- gochecksumtype
- gocritic
- gofumpt
- goheader
- gomodguard
- goprintffuncname
- gosimple
- govet
- importas
- ineffassign
# - maintidx (this would be nice to re-enable at some point, to help keep complexity at bay)
- makezero
- misspell
- nakedret
- nilnil
- nolintlint
- promlinter
- staticcheck
- stylecheck
- tenv
- testableexamples
- testifylint
- thelper
- tparallel
- typecheck
- unconvert
- unused
- whitespace
- unparam
- revive
- usestdlibvars
- zerologlint
linters-settings:
revive:
rules:
- name: function-result-limit
severity: warning
disabled: false
# limits the number of returns to 5
arguments: [5]
issues:
# Exclude all *.pb.gw.go files
exclude-files:
- ".*\\.pb\\.gw\\.go$"
exclude-rules:
- linters:
- stylecheck
text: "ST1003:" # requires identifiers with "id" to be "ID".
- linters:
- stylecheck
text: "ST1005:" # punctuation in error messages
max-issues-per-linter: 10000
max-same-issues: 10000