forked from Kong/gateway-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yaml
136 lines (134 loc) · 3.18 KB
/
.golangci.yaml
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
run:
timeout: 5m
linters:
enable:
- asciicheck
- bodyclose
- dogsled
- durationcheck
- errcheck
- errorlint
- exhaustive
- exportloopref
- forbidigo
- gci
- gofmt
- gocritic
- goimports
- gomodguard
- gosec
- gosimple
- govet
- importas
- ineffassign
- misspell
- nilerr
- nolintlint
- predeclared
- revive
- staticcheck
- typecheck
- unconvert
- unparam
- unused
- wastedassign
linters-settings:
gci:
sections:
- standard
- default
- prefix(github.com/kong/gateway-operator)
importas:
no-unaliased: true
alias:
- pkg: k8s.io/api/core/v1
alias: corev1
- pkg: k8s.io/api/apps/v1
alias: appsv1
- pkg: k8s.io/api/admission/v1
alias: admissionv1
- pkg: k8s.io/api/certificates/v1
alias: certificatesv1
- pkg: k8s.io/apimachinery/pkg/apis/meta/v1
alias: metav1
- pkg: sigs.k8s.io/gateway-api/apis/(v[\w\d]+)
alias: gateway${1}
- pkg: github.com/kong/gateway-operator/internal/types
alias: gwtypes
revive:
rules:
- name: errorf
severity: warning
disabled: false
- name: error-strings
severity: warning
disabled: false
- name: error-naming
severity: warning
disabled: false
- name: duplicated-imports
severity: warning
disabled: false
- name: empty-block
severity: warning
disabled: false
- name: exported
severity: warning
disabled: false
arguments:
- "checkPrivateReceivers"
# TODO: enable this when ready to refactor exported types that stutter at call site.
- "disableStutteringCheck"
- name: context-as-argument
# TODO: re-add this rule after https://github.com/golangci/golangci-lint/issues/3280
# is resolved and released.
# arguments:
# - "allowTypesBefore": "*testing.T"
disabled: true
exhaustive:
default-signifies-exhaustive: true
gomodguard:
blocked:
modules:
- golang.org/x/exp:
recommendations:
- maps
- slices
- github.com/samber/lo
- github.com/pkg/errors:
recommendations:
- fmt
- errors
- github.com/sirupsen/logrus:
recommendations:
- sigs.k8s.io/controller-runtime/pkg/log
- go.uber.org/zap/zapcore
forbidigo:
forbid:
- p: ^.*Dataplane.*$
msg: "Please use camel case 'DataPlane' instead of 'Dataplane'"
- p: ^.*Controlplane.*$
msg: "Please use camel case 'ControlPlane' instead of 'Controlplane'"
issues:
max-same-issues: 0
fix: true
exclude-dirs:
- pkg/clientset
- config/
include:
- EXC0012
exclude-rules:
# Exclude checking exported comments in internal/ which cannot be used from outside.
- path: internal/
linters:
- revive
text: "exported: exported"
# Test cases are self-explanatory, thus no need a docstring.
- path: test/integration
linters:
- revive
text: "exported: exported"
- path: test/e2e
linters:
- revive
text: "exported: exported"