Skip to content

Commit

Permalink
ignore gci in for result go
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversun9 committed Nov 21, 2023
1 parent 96868bb commit 3cd8ac7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ issues:
linters:
- gosec
- forbidigo
# gci is confused by "slices" and suggests to move it to the end of the import list
- path: tools/protovalidate-conformance/internal/results/result.go
linters:
- gci
# Building the conformance test suites
- path: tools/protovalidate-conformance/internal/cases/
linters:
Expand Down
3 changes: 2 additions & 1 deletion tools/protovalidate-conformance/internal/results/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ import (
"strings"

"cmp"
"slices"

"github.com/bufbuild/protovalidate/tools/internal/gen/buf/validate"
"github.com/bufbuild/protovalidate/tools/internal/gen/buf/validate/conformance/harness"
"slices"
)

type Result interface {
Expand Down

0 comments on commit 3cd8ac7

Please sign in to comment.