-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy path.golangci.yaml
106 lines (106 loc) · 1.74 KB
/
.golangci.yaml
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
96
97
98
99
100
101
102
103
104
105
106
version: "2"
run:
concurrency: 4
go: "1.23"
modules-download-mode: readonly
issues-exit-code: 2
tests: false
output:
formats:
text:
path: stdout
tab:
path: stdout
colors: false
linters:
enable:
- asciicheck
- bidichk
- copyloopvar
- cyclop
- decorder
- depguard
- dogsled
- dupl
- dupword
- funlen
- gocheckcompilerdirectives
- gochecknoinits
- gocognit
- goconst
- gocyclo
- godot
- godox
- goheader
- gomoddirectives
- gomodguard
- goprintffuncname
- grouper
- inamedparam
- interfacebloat
- lll
- maintidx
- misspell
- mnd
- nakedret
- nestif
- nlreturn
- nolintlint
- nosprintfhostport
- prealloc
- predeclared
- promlinter
- tagalign
- testpackage
- usestdlibvars
- whitespace
- wsl
disable:
- tagliatelle
- unused
settings:
depguard:
rules:
main:
files:
- $all
allow:
- $gostd
- github.com/google
- golang.org/x/oauth2
- github.com/VictorAvelar/mollie-api-go/v4/
tests:
files:
- $test
allow:
- github.com/stretchr/testify
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- lll
source: BusinessCategory
paths:
- third_party$
- builtin$
- examples$
issues:
new: true
fix: true
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$