forked from graphprotocol/osmosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
69 lines (66 loc) · 1.45 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
run:
tests: false
timeout: 5m
linters:
disable-all: true
# Enable specific linter
# https://golangci-lint.run/usage/linters/#enabled-by-default-linters
enable:
- asciicheck
- bidichk
- durationcheck
- errcheck
- errname
- exportloopref
- forcetypeassert
- goconst
- gofmt
- goimports
- goheader
- gomodguard
- goprintffuncname
- gosimple
- govet
- importas
- ineffassign
- makezero
- misspell
- nakedret
- nilnil
- promlinter
- staticcheck
- stylecheck
- tenv
- thelper
- tparallel
- typecheck
- thelper
- unconvert
- unused
- whitespace
- unparam
- revive
linters-settings:
revive:
rules:
- name: function-result-limit
severity: warning
disabled: false
# limits the number of returns to 4
arguments: [4]
issues:
exclude-rules:
- linters:
- staticcheck
text: "SA1024: cutset contains duplicate characters" # proved to not provide much value, only false positives.
- linters:
- staticcheck
text: "SA9004: only the first constant in this group has an explicit type" # explicitly recommended in go syntax
- 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