-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
.golangci.yml
59 lines (57 loc) · 991 Bytes
/
.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
linters-settings:
gocyclo:
min-complexity: 18
gofmt:
simplify: true
misspell:
locale: US
govet:
disable:
- shadow
enable-all: true
testifylint:
disable:
- require-error
- error-nil
- formatter
- encoded-compare
revive:
rules:
- name: var-naming
arguments:
- [] # AllowList
- ["DTO"] # DenyList
- name: unused-parameter
disabled: false
linters:
enable:
- gofmt
- revive
- gocyclo
- misspell
- govet
- unused
- errcheck
- copyloopvar
- gosimple
- ineffassign
- staticcheck
- testifylint
- whitespace
- bodyclose
- inamedparam
disable-all: false
fast: false
issues:
exclude-use-default: false
max-issues-per-linter: 0
max-same-issues: 0
exclude-dirs:
- .github
- resources
exclude:
- should have a package comment
exclude-rules:
- path: _test\.go
linters:
- gocyclo