-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
46 lines (43 loc) · 895 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
linters-settings:
govet:
check-shadowing: true
maligned:
suggest-new: true
goconst:
min-len: 2
min-occurrences: 3
gci:
sections:
- standard # Captures all standard packages if they do not match another section.
- prefix(github.com/maxgio92/krawler) # Groups all imports with the specified Prefix.
- default # Contains all imports that could not be matched to another section type.
tagliatelle:
case:
rules:
json: snake
linters:
enable-all: true
disable:
- interfacer
- godox
- golint
- scopelint
- maligned
- gochecknoglobals
- gochecknoinits
- exhaustivestruct
- exhaustruct
- ireturn
- lll
- nonamedreturns
- wrapcheck
- varnamelen
issues:
exclude-rules:
- path: /
linters:
- typecheck
run:
skip-dirs:
- pkg/utils/matrix
- pkg/utils/template