File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
run :
2
2
timeout : 10m
3
3
issues-exit-code : 1
4
- max-issues-per-linter : 0
5
- max-same-issues : 0
6
4
tests : true
7
- skip-dirs-use-default : true
8
5
modules-download-mode : readonly
9
6
allow-parallel-runners : false
10
7
@@ -39,11 +36,13 @@ linters-settings:
39
36
simplify : true
40
37
goimports :
41
38
local-prefixes : sigs.k8s.io/gateway-api
42
- golint :
43
- min-confidence : 0.9
44
39
govet :
45
- # report about shadowed variables
46
- check-shadowing : true
40
+ enable :
41
+ - shadow
42
+ settings :
43
+ shadow :
44
+ # Whether to be strict about shadowing; can be noisy.
45
+ strict : true
47
46
misspell :
48
47
locale : US
49
48
ignore-words : []
@@ -58,6 +57,8 @@ linters-settings:
58
57
reason : " Deprecation of package ioutil in Go 1.16."
59
58
60
59
issues :
60
+ max-issues-per-linter : 0
61
+ max-same-issues : 0
61
62
exclude-rules :
62
63
# Exclude some linters from running on tests files.
63
64
- path : _test\.go
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ set -o errexit
18
18
set -o nounset
19
19
set -o pipefail
20
20
21
- readonly VERSION=" v1.57.2 "
21
+ readonly VERSION=" v1.60.3 "
22
22
readonly KUBE_ROOT=$( dirname " ${BASH_SOURCE} " ) /..
23
23
24
24
cd " ${KUBE_ROOT} "
You can’t perform that action at this time.
0 commit comments