65 lines
1.2 KiB
YAML
65 lines
1.2 KiB
YAML
run:
|
|
timeout: 5m
|
|
allow-parallel-runners: true
|
|
|
|
issues:
|
|
# don't skip warning about doc comments
|
|
# don't exclude the default set of lint
|
|
exclude-use-default: false
|
|
# restore some of the defaults
|
|
# (fill in the rest as needed)
|
|
exclude-rules:
|
|
- path: "api/*"
|
|
linters:
|
|
- lll
|
|
- path: "internal/*"
|
|
linters:
|
|
- dupl
|
|
- lll
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- dupl
|
|
- errcheck
|
|
- copyloopvar
|
|
- ginkgolinter
|
|
- goconst
|
|
- gocyclo
|
|
- gofmt
|
|
- goimports
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- lll
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- revive
|
|
- staticcheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
|
|
linters-settings:
|
|
revive:
|
|
rules:
|
|
- name: comment-spacings
|
|
gci:
|
|
sections:
|
|
- standard
|
|
- default
|
|
- prefix(code.icb4dc0.de/prskr/supabase-operator)
|
|
- alias
|
|
- blank
|
|
- dot
|
|
goimports:
|
|
local-prefixes: code.icb4dc0.de/prskr/supabase-operator
|
|
importas:
|
|
no-unaliased: true
|
|
no-extra-aliases: true
|
|
alias:
|
|
- pkg: k8s.io/api/(\w+)/(v[\w\d]+)
|
|
alias: $1$2
|
|
- pkg: "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
alias: metav1
|