-
Notifications
You must be signed in to change notification settings - Fork 2
/
.golangci.yml
55 lines (51 loc) · 1.02 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
linters-settings:
govet:
check-shadowing: true
cyclop:
max-complexity: 15
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.
- default # Contains all imports that could not be matched to another section type.
- prefix(github.com/falcosecurity/peribolos-syncer) # Groups all imports with the specified Prefix.
tagliatelle:
case:
rules:
json: snake
linters:
enable-all: true
disable:
- interfacer
- godox
- golint
- scopelint
- maligned
- gochecknoglobals
- gochecknoinits
- exhaustivestruct
- exhaustruct
- ireturn
- lll
- nonamedreturns
- varnamelen
- depguard
- wrapcheck
issues:
exclude-rules:
- path: /
linters:
- typecheck
- path: _test.go
linters:
- revive
- ineffassign
- staticcheck
- errcheck
- path: docs/docs.go
linters:
- forbidigo