-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
.golangci.yaml
59 lines (53 loc) · 941 Bytes
/
.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
# golangci-lint configuration
run:
concurrency: 4
timeout: 20s
issues-exit-code: 2
tests: false
modules-download-mode: readonly
go: "1.22"
output:
formats:
- path: stdout
format: tab
- format: colored-line-number
sort-results: true
linters:
disable:
- tagliatelle
presets:
- bugs
- comment
- complexity
- error
- format
- import
- metalinter
- module
- performance
- sql
- style
fast: true
issues:
exclude-rules:
- linters:
- lll
source: "BusinessCategory"
fix: true
new: true
linters-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"