-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.golangci.yml
79 lines (77 loc) · 1.73 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
78
79
run:
timeout: 5m
go: "1.23"
linters:
disable-all: true
enable:
- asciicheck
- bodyclose
- dogsled
- errcheck
- goconst
- gocritic
- gocyclo
- gofmt
- goprintffuncname
- gosimple
- govet
- nakedret
- nestif
- nolintlint
- prealloc
- rowserrcheck
- staticcheck
- typecheck
- unconvert
- unparam
- unused
- gosec
- misspell
- whitespace
- exhaustive
- copyloopvar
- sqlclosecheck
- wastedassign
- ineffassign
- mirror
- nilnil
- nosprintfhostport
- dupl
# TODO: add and fix issues
#- revive
#- noctx
#- musttag
linters-settings:
prealloc:
# Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them.
# True by default.
simple: true
range-loops: true # Report preallocation suggestions on range loops, true by default
for-loops: true # Report preallocation suggestions on for loops, false by default
gocritic:
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks.
# Empty list by default. See https://github.com/go-critic/go-critic#usage -> section "Tags".
enabled-tags:
- diagnostic
- performance
disabled-checks:
- hugeParam
- rangeValCopy
- ifElseChain
exhaustive:
default-signifies-exhaustive: true
issues:
exclude-rules:
- path: _test\.go # to exclude all test files for linter errcheck
linters:
- errcheck
- goconst
- linters:
- gosec
text: "G101:"
- linters:
- gosec
text: "G404:"
- linters:
- gosec
text: "G115:" # integer overflow conversion int -> uint16