forked from sei-protocol/sei-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
51 lines (49 loc) · 1.08 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
run:
tests: false
# # timeout for analysis, e.g. 30s, 5m, default is 1m
timeout: 10m
build-tags:
- codeanalysis
linters:
disable-all: true
enable:
- bodyclose
- deadcode
# - depguard ## see https://github.com/golangci/golangci-lint/issues/3906
- dogsled
- exportloopref
- errcheck
- goconst
- gocritic
- gofmt
- goimports
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- prealloc
- staticcheck
# - structcheck ## author abandoned project
- stylecheck
# - revive
- typecheck
- unconvert
- unused
- unparam
- misspell
# - nolintlint ## does not work with IDEs like VSCode which automatically insert leading spaces
issues:
exclude-rules:
- text: "Use of weak random number generator"
linters:
- gosec
- text: "ST1003:"
linters:
- stylecheck
# FIXME: Disabled until golangci-lint updates stylecheck with this fix:
# https://github.com/dominikh/go-tools/issues/389
- text: "ST1016:"
linters:
- stylecheck