-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
95 lines (91 loc) · 1.96 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
linters-settings:
goconst:
min-len: 2
min-occurrences: 3
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
govet:
shadow: true
enable:
- fieldalignment
nolintlint:
require-explanation: true
require-specific: true
depguard:
rules:
Main:
allow:
- $gostd
- github.com/aerospike/avs-client-go/protos
- 'github.com/stretchr/testify/assert'
linters:
disable-all: true
enable:
- bodyclose
# - unused # intentionally commented to avoid unused func warning as this repo is library
- depguard
- dogsled
- dupl
- errcheck
- exportloopref
- exhaustive
- goconst
- gocritic
- gofmt
- goimports
- gocyclo
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nolintlint
- nakedret
- prealloc # pre-allocate slices with define size if the slice size is known in advance
- predeclared
- revive
- staticcheck
- stylecheck
- thelper
- tparallel
- typecheck
- unconvert
- unparam
- whitespace
- lll
- wsl # While space linter
run:
issues-exit-code: 1
go: '1.21'
# skip-dirs:
# - sample
# skip-files:
# - sample
issues:
exclude-rules:
- path: '(.+)test\.go'
linters:
- govet # Test code field alignment for sake of space is not a concern
- path: 'token_manager_test.go'
linters:
- goconst # Test code is allowed to have constants
- path: 'connection_provider_test.go'
linters:
- goconst
# - path: dir/sample\.go
# linters:
# - lll # Test code is allowed to have long lines
# - path: dir/sample\.go
# linters:
# - dupl # Test code is allowed to have duplicate code
# - path: dir/sample\.go
# linters:
# - dupl # Test code is allowed to have duplicate code
# - linters:
# - lll
# source: "// "