-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.golangci.yml
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy path.golangci.yml
File metadata and controls
60 lines (60 loc) · 1.5 KB
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
version: "2"
run:
concurrency: 1
linters:
enable:
- exhaustive
- gosec
- revive
- sqlclosecheck
- staticcheck
disable:
- errcheck
settings:
exhaustive:
default-signifies-exhaustive: true
gosec:
excludes:
- G602
govet:
enable:
- shadow
settings:
printf:
funcs:
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
revive:
confidence: 0.1
exclusions:
generated: disable
rules:
- linters:
- govet
text: 'shadow: declaration of "err" shadows declaration at'
- path: (.+)\.go$
text: ST1000
paths:
- pkg/graph/generated/generated.go
- pkg/graph/model/models_gen.go
- third_party$
- builtin$
- examples$
formatters:
enable:
- gofmt
- goimports
settings:
goimports:
local-prefixes:
- github.com/cms-enterprise/mint-app
exclusions:
generated: disable
paths:
- pkg/graph/generated/generated.go # Since we don't ignore _all_ generated files, we have to ignore this one specifically
- pkg/graph/model/models_gen.go # Since we don't ignore _all_ generated files, we have to ignore this one specifically
- third_party$
- builtin$
- examples$