-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
106 lines (102 loc) · 1.74 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
96
97
98
99
100
101
102
103
104
105
106
# More info on config here: https://golangci-lint.run/usage/configuration/#config-file
run:
timeout: 10m
allow-parallel-runners: true
issues-exit-code: 1
tests: true
output:
print-issued-lines: true
print-linter-name: true
linters-settings:
dupl:
threshold: 100
goconst:
min-len: 2
min-occurrences: 2
govet:
disable:
- fieldalignment
revive:
rules:
- name: unexported-return
disabled: true
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
disabled-checks:
- hugeParam
- rangeExprCopy
- rangeValCopy
- commentedOutCode
errcheck:
check-type-assertions: true
check-blank: true
tagliatelle:
case:
rules:
json: snake
yaml: snake
xml: camel
bson: camel
avro: snake
mapstructure: kebab
cyclop:
max-complexity: 25
skip-tests: true
linters:
disable-all: true
enable:
- cyclop
- goconst
- testifylint
- asasalint
- asciicheck
- bidichk
- bodyclose
- contextcheck
- durationcheck
- errcheck
- errname
- errorlint
- gocritic
- godot
- gofmt
- goimports
- gomoddirectives
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- nilerr
- nilnil
- noctx
- nolintlint
- prealloc
- predeclared
- promlinter
- reassign
- revive
- rowserrcheck
- sqlclosecheck
- staticcheck
- stylecheck
- tagliatelle
- tenv
- testableexamples
- thelper
- tparallel
- unconvert
- unparam
- unused
- usestdlibvars
- wastedassign
issues:
exclude-dirs:
- tests
- tools