diff --git a/.golangci.yaml b/.golangci.yaml index 0f9234e..b7c0cd7 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -10,15 +10,12 @@ linters-settings: statements: 50 gci: - no-inline-comments: false - no-prefix-comments: true + skip-generated: true sections: - standard - default - prefix(github.com/protobom/sbom-convert) - section-separators: - - newLine goimports: local-prefixes: github.com/protobom/sbom-convert goconst: diff --git a/pkg/convert/convert_test.go b/pkg/convert/convert_test.go index d197f21..7f81cd2 100644 --- a/pkg/convert/convert_test.go +++ b/pkg/convert/convert_test.go @@ -11,12 +11,11 @@ import ( "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" - "go.uber.org/mock/gomock" - "github.com/protobom/protobom/pkg/formats" "github.com/protobom/protobom/pkg/reader" "github.com/protobom/protobom/pkg/sbom" "github.com/protobom/protobom/pkg/writer" + "go.uber.org/mock/gomock" "github.com/protobom/sbom-convert/pkg/convert" "github.com/protobom/sbom-convert/pkg/convert/mocks" diff --git a/pkg/format/main_test.go b/pkg/format/main_test.go index 41d07c2..149fcd7 100644 --- a/pkg/format/main_test.go +++ b/pkg/format/main_test.go @@ -5,7 +5,6 @@ import ( "testing" "github.com/google/go-cmp/cmp" - "github.com/protobom/protobom/pkg/formats" "github.com/protobom/sbom-convert/pkg/format"