๐Ÿ“ฆ Kong / kubernetes-configuration

๐Ÿ“„ .golangci.yaml ยท 147 lines
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
137
138
139
140
141
142
143
144
145
146
147version: "2"
run:
  timeout: 8m
linters:
  enable:
    - asciicheck
    - bodyclose
    - copyloopvar
    - dogsled
    - durationcheck
    - errorlint
    - exhaustive
    - forbidigo
    - gocritic
    - gomodguard
    - gosec
    - importas
    - misspell
    - nakedret
    - nilerr
    - nolintlint
    - predeclared
    - revive
    - unconvert
    - unparam
    - wastedassign
  settings:
    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
    staticcheck:
      checks:
        - all
        # Incorrect or missing package comment.
        # https://staticcheck.dev/docs/checks/#ST1000
        - -ST1000
        # Incorrectly formatted error string.
        # https://staticcheck.dev/docs/checks/#ST1005
        - -ST1005
    importas:
      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: sigs.k8s.io/controller-runtime/pkg/log
          alias: ctrllog
        - pkg: github.com/Kong/sdk-konnect-go/models/components
          alias: sdkkonnectcomp
        - pkg: github.com/Kong/sdk-konnect-go/models/operations
          alias: sdkkonnectops
        - pkg: github.com/Kong/sdk-konnect-go/models/sdkerrors
          alias: sdkkonnecterrs
        - pkg: github.com/kong/kubernetes-configuration/api/common/(v[\w\d]+)
          alias: common${1}
        - pkg: github.com/kong/kubernetes-configuration/api/gateway-operator/(v[\w\d]+)
          alias: operator${1}
        - pkg: github.com/kong/kubernetes-configuration/api/configuration/(v[\w\d]+)
          alias: configuration${1}
        - pkg: github.com/kong/kubernetes-configuration/api/incubator/(v[\w\d]+)
          alias: incubator${1}
        - pkg: github.com/kong/kubernetes-configuration/api/konnect/(v[\w\d]+)
          alias: konnect${1}
      no-unaliased: true
    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
          arguments:
            - checkPrivateReceivers
          severity: warning
          disabled: false
        - name: context-as-argument
          disabled: true
  exclusions:
    generated: lax
    presets:
      - common-false-positives
      - legacy
      - std-error-handling
    paths:
      - zz_generated.+.go
      - pkg/clientset
      - third_party$
      - builtin$
      - examples$
issues:
  max-same-issues: 0
  fix: true
formatters:
  enable:
    - gci
    - gofmt
    - goimports
  settings:
    gci:
      sections:
        - standard
        - default
        - prefix(github.com/Kong/sdk-konnect-go)
        - prefix(github.com/kong/kubernetes-configuration)
  exclusions:
    generated: lax
    paths:
      - zz_generated.+.go
      - pkg/clientset
      - third_party$
      - builtin$
      - examples$