File tree 5 files changed +3
-8
lines changed 5 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ linter-settings:
5
5
linters :
6
6
disable-all : true
7
7
enable :
8
- - deadcode
9
8
- errcheck
10
9
- goconst
11
10
- gofmt
@@ -20,10 +19,8 @@ linters:
20
19
- predeclared
21
20
- revive
22
21
- staticcheck
23
- - structcheck
24
22
- typecheck
25
23
- unconvert
26
24
- unparam
27
25
- unused
28
- - varcheck
29
26
- wastedassign
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ require (
10
10
github.com/basgys/goxml2json v1.1.0
11
11
github.com/bufbuild/protocompile v0.5.1
12
12
github.com/cpuguy83/dockercfg v0.3.1
13
- github.com/ghodss/yaml v1.0.0
14
13
github.com/go-akka/configuration v0.0.0-20200606091224-a002c0330665
15
14
github.com/go-ini/ini v1.67.0
16
15
github.com/google/go-cmp v0.5.9
@@ -36,6 +35,7 @@ require (
36
35
muzzammil.xyz/jsonc v1.0.0
37
36
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3
38
37
oras.land/oras-go/v2 v2.3.0
38
+ sigs.k8s.io/yaml v1.3.0
39
39
)
40
40
41
41
require (
@@ -125,5 +125,4 @@ require (
125
125
gopkg.in/ini.v1 v1.66.2 // indirect
126
126
gopkg.in/yaml.v2 v2.4.0 // indirect
127
127
gopkg.in/yaml.v3 v3.0.1 // indirect
128
- sigs.k8s.io/yaml v1.3.0 // indirect
129
128
)
Original file line number Diff line number Diff line change @@ -309,7 +309,6 @@ github.com/foxcpp/go-mockdns v1.0.0 h1:7jBqxd3WDWwi/6WhDvacvH1XsN3rOLXyHM1uhvIx6
309
309
github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
310
310
github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY =
311
311
github.com/fsnotify/fsnotify v1.6.0 /go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw =
312
- github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk =
313
312
github.com/ghodss/yaml v1.0.0 /go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04 =
314
313
github.com/go-akka/configuration v0.0.0-20200606091224-a002c0330665 h1:Iz3aEheYgn+//VX7VisgCmF/wW3BMtXCLbvHV4jMQJA =
315
314
github.com/go-akka/configuration v0.0.0-20200606091224-a002c0330665 /go.mod h1:19bUnum2ZAeftfwwLZ/wRe7idyfoW2MfmXO464Hrfbw =
Original file line number Diff line number Diff line change 4
4
"bytes"
5
5
"fmt"
6
6
7
- "github.com/ghodss /yaml"
7
+ "sigs.k8s.io /yaml"
8
8
)
9
9
10
10
// Parser is a YAML parser.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"strings"
11
11
"syscall"
12
12
13
- "github.com/ghodss /yaml"
13
+ "sigs.k8s.io /yaml"
14
14
)
15
15
16
16
const (
You can’t perform that action at this time.
0 commit comments