-
Notifications
You must be signed in to change notification settings - Fork 2
/
.golangci.yaml
80 lines (80 loc) · 1.31 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
output:
formats: colored-line-number,checkstyle:./golangci-lint-report.xml
run:
issues-exit-code: 0
timeout: 10m
build-tags: []
go: "1.21"
linters:
disable-all: true
enable:
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- typecheck
- unused
- gosec
linters-settings:
nestif:
min-complexity: 12
prealloc:
range-loops: true
for-loops: true
govet:
enable-all: true
disable:
- fieldalignment
- shadow
revive:
rules:
- name: var-declaration
disabled: true
stylecheck:
checks: ["ST1000", "ST1019", "ST1020", "ST1021", "ST1022"]
http-status-code-whitelist: ["200", "400", "404", "500"]
gosec:
includes:
- G101
- G102
- G103
- G104
- G106
- G107
- G108
- G109
- G110
- G111
- G201
- G202
- G203
- G204
- G301
- G302
- G303
- G304
- G305
- G306
- G307
- G401
- G402
- G403
- G404
- G501
- G502
- G503
- G504
- G505
- G601
issues:
exclude-rules:
- path: test # Excludes /test, *_test.go etc.
linters:
- gosec
- unparam
exclude-dirs:
- config
- test
exclude-files:
- ".*/go/pkg/mod/.*"