Skip to content

Commit

Permalink
ci: fix golangci-lint config
Browse files Browse the repository at this point in the history
golangci-lint config is now case sensitive and complains about
`Text` entries. Update to `text` to fix this.

Signed-off-by: Maksim An <maksiman@microsoft.com>
  • Loading branch information
anmaxvl committed Feb 28, 2025
1 parent a3c0edf commit b39fee3
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,22 @@ issues:
- path: layer.go
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: hcsshim.go
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: cmd\\ncproxy\\nodenetsvc\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: cmd\\ncproxy_mock\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\hcs\\schema2\\
linters:
Expand All @@ -94,67 +94,67 @@ issues:
- path: internal\\wclayer\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: hcn\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\hcs\\schema1\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\hns\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: ext4\\internal\\compactext4\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: ext4\\internal\\format\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\guestrequest\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\guest\\prot\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\windevice\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\winapi\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\vmcompute\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\regstate\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

- path: internal\\hcserror\\
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

# v0 APIs are deprecated, but still retained for backwards compatability
- path: cmd\\ncproxy\\
Expand All @@ -170,4 +170,4 @@ issues:
- path: internal\\vhdx\\info
linters:
- stylecheck
Text: "ST1003:"
text: "ST1003:"

0 comments on commit b39fee3

Please sign in to comment.