We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551c604 commit 5ff3ce3Copy full SHA for 5ff3ce3
tools/linter/golangci-lint/.golangci-kal.yml
@@ -17,12 +17,22 @@ linters:
17
settings:
18
linters:
19
enable:
20
- - "commentstart"
+ - "conditions"
21
+ - "nodurations"
22
+ - "nonullable"
23
+ - "notimestamp"
24
+ - "statusoptional"
25
+ disable:
26
+ - "*"
27
+ lintersConfig:
28
+ conditions:
29
+ isFirstField: Warn # Require conditions to be the first field in the status struct.
30
+ usePatchStrategy: Forbid # Forbid patchStrategy markers on the Conditions field.
31
+ useProtobuf: Forbid # We don't use protobuf, so protobuf tags are not required.
32
33
exclusions:
34
generated: strict
35
36
issues:
37
max-same-issues: 0
38
max-issues-per-linter: 0
- exit-code: 0
0 commit comments