generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 473
/
.golangci.yml
79 lines (76 loc) · 1.84 KB
/
.golangci.yml
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
run:
timeout: 10m
issues-exit-code: 1
tests: true
modules-download-mode: readonly
allow-parallel-runners: false
linters:
fast: false
enable:
- errcheck
- copyloopvar
- gocritic
- gofumpt
- goimports
- gomodguard
- gosec
- govet
- misspell
- revive
- unconvert
- unparam
- unused
- whitespace
disable-all: false
presets:
- bugs
- unused
# all available settings of specific linters
linters-settings:
gofmt:
# simplify code: gofmt with `-s` option, true by default
simplify: true
goimports:
local-prefixes: sigs.k8s.io/gateway-api
govet:
enable:
- shadow
settings:
shadow:
# Whether to be strict about shadowing; can be noisy.
strict: false
misspell:
locale: US
ignore-words: []
gomodguard:
blocked:
# List of blocked modules.
modules:
- io/ioutil:
recommendations:
- io
- os
reason: "Deprecation of package ioutil in Go 1.16."
issues:
max-issues-per-linter: 0
max-same-issues: 0
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gocyclo
- errcheck
- dupl
# Too many false positives - for examples see: https://github.com/Antonboom/testifylint/issues/67
- linters:
- testifylint
text: "require must only be used in the goroutine running the test function"
- linters:
- testifylint
text: "contains assertions that must only be used in the goroutine running the test function"
# It is valid usage to wrap errors without using %w to not make them part of
# the API contract.
- linters: ["errorlint"]
text: "non-wrapping format verb for fmt.Errorf. Use `%w` to format errors"
exclude:
- Using the variable on range scope `tc` in function literal