-
Notifications
You must be signed in to change notification settings - Fork 13
/
.golangci.yaml
95 lines (81 loc) · 2.3 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
# https://golangci-lint.run/usage/configuration/
linters:
disable:
- gofumpt
enable:
- depguard
- goheader
- gomodguard
- gosimple
- importas
- misspell
- predeclared
- tenv
- tparallel
- unconvert
presets:
- bugs
- format
- unused
linters-settings:
depguard:
rules:
everything:
deny:
- pkg: io/ioutil
desc: >
Use the "io" and "os" packages instead.
See https://go.dev/doc/go1.16#ioutil
not-tests:
files:
- '!$test'
deny:
- pkg: net/http/httptest
desc: Should be used only in tests.
- pkg: gotest.tools
desc: Should be used only in tests.
- pkg: testing/*
desc: The "testing" packages should be used only in tests.
- pkg: github.com/crunchydata/postgres-operator-client/internal/testing/*
desc: The "internal/testing" packages should be used only in tests.
gci:
sections:
- standard
- default
- prefix(github.com/crunchydata/postgres-operator-client)
goheader:
template: |-
Copyright {{ DATES }} Crunchy Data Solutions, Inc.
SPDX-License-Identifier: Apache-2.0
values:
regexp:
DATES: '(202[1-3] - 2024|2024)'
goimports:
local-prefixes: github.com/crunchydata/postgres-operator-client
gomodguard:
blocked:
modules:
- gopkg.in/yaml.v2: { recommendations: [sigs.k8s.io/yaml] }
- gopkg.in/yaml.v3: { recommendations: [sigs.k8s.io/yaml] }
- gotest.tools: { recommendations: [gotest.tools/v3] }
- k8s.io/kubernetes:
reason: >
k8s.io/kubernetes is for managing dependencies of the Kubernetes
project, i.e. building kubelet and kubeadm.
importas:
no-unaliased: true
alias:
- pkg: k8s.io/api/(\w+)/(v[\w\w]+)
alias: $1$2
- pkg: k8s.io/apimachinery/pkg/apis/(\w+)/(v[\w\d]+)
alias: $1$2
- pkg: k8s.io/apimachinery/pkg/api/errors
alias: apierrors
issues:
# https://github.com/golangci/golangci-lint/issues/2239
exclude-use-default: false
exclude-rules:
# These testing packages are allowed in test files.
- linters: [depguard]
path: ^internal/testing
text: "gotest.tools"