-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.golangci.yml
More file actions
43 lines (40 loc) · 859 Bytes
/
Copy path.golangci.yml
File metadata and controls
43 lines (40 loc) · 859 Bytes
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
run:
concurrency: 16
timeout: 5m
tests: false
allow-parallel-runners: true
linters:
disable-all: true
enable:
- asciicheck
- bodyclose
- errcheck
- forcetypeassert
- gofumpt
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
- misspell
- revive
- nakedret
- nolintlint
- staticcheck
- stylecheck
- testpackage
- typecheck
- unconvert
- unparam
- unused
- whitespace
linters-settings:
nolintlint:
allow-leading-space: true
issues:
exclude-rules:
- path: x/scheduler/client/cli/tx_hook
text: "SA1019: cli.FlagDescription is deprecated: only used for v1beta1 legacy proposals."
- path: x/scheduler/client/cli/tx_hook
text: "SA1019: cli.FlagProposal is deprecated: only used for v1beta1 legacy proposals."