-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yaml
More file actions
92 lines (92 loc) · 2.08 KB
/
Copy path.golangci.yaml
File metadata and controls
92 lines (92 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
version: "2"
run:
tests: true
linters:
default: none
enable:
- bodyclose
- containedctx
- contextcheck
- dogsled
- durationcheck
- errcheck
- errname
- fatcontext
- forcetypeassert
- goconst
- gosec
- govet
- ineffassign
- makezero
- modernize
- nilerr
- nilnil
- noctx
- nolintlint
- prealloc
- predeclared
- recvcheck
- revive
- sloglint
- staticcheck
- thelper
- tparallel
- unconvert
- unparam
- unused
- usestdlibvars
- usetesting
- whitespace
- wrapcheck
settings:
goconst:
min-len: 3
min-occurrences: 3
ignore-tests: true
nolintlint:
require-explanation: true
require-specific: true
revive:
max-open-files: 2048
confidence: 0.8
severity: warning
enable-all-rules: false
rules:
- name: context-as-argument # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#context-as-argument
severity: warning
disabled: false
- name: defer # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#defer
severity: warning
disabled: false
- name: unexported-return # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unexported-return
severity: warning
disabled: false
- name: exported # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#exported
arguments:
- checkPrivateReceivers
- sayRepetitiveInsteadOfStutters
severity: warning
disabled: false
usetesting:
context-background: true
context-todo: true
exclusions:
generated: lax
rules:
- linters:
- revive
path: synthesize/voice.go
text: "exported const .* should have comment"
formatters:
enable:
- gci
- gofmt
- goimports
- gofumpt
settings:
gci:
sections:
- standard
- default
- prefix(github.com/occamist/laverna)
custom-order: true