-
Notifications
You must be signed in to change notification settings - Fork 52
feat: added plugin metadata linter #468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,14 @@ | ||
| module github.com/IBM-Cloud/ibm-cloud-cli-sdk | ||
|
|
||
| go 1.23.0 | ||
| go 1.24.0 | ||
|
|
||
| toolchain go1.24.4 | ||
|
|
||
| require ( | ||
| github.com/Masterminds/semver v1.5.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Callout: Used to validate against the provided min CLI version defined in the metadata and the allowed min CLI version. The package is used in the core CLI. |
||
| github.com/fatih/color v1.7.1-0.20180516100307-2d684516a886 | ||
| github.com/fatih/structs v1.0.1-0.20171020064819-f5faa72e7309 | ||
| github.com/go-playground/validator/v10 v10.28.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Callout: This package is validation library to support validation using struct tags. Widely used package under the MIT license. Over 200+ contributors and the last release was 4 days ago. |
||
| github.com/gofrs/flock v0.8.1 | ||
| github.com/google/uuid v1.6.0 | ||
| github.com/jedib0t/go-pretty/v6 v6.6.1 | ||
|
|
@@ -17,22 +19,26 @@ require ( | |
| github.com/spf13/cobra v1.6.1 | ||
| github.com/spf13/pflag v1.0.5 | ||
| github.com/stretchr/testify v1.8.4 | ||
| golang.org/x/crypto v0.36.0 | ||
| golang.org/x/term v0.30.0 | ||
| golang.org/x/text v0.23.0 | ||
| golang.org/x/crypto v0.42.0 | ||
| golang.org/x/term v0.35.0 | ||
| golang.org/x/text v0.29.0 | ||
| gopkg.in/cheggaaa/pb.v1 v1.0.15 | ||
| gopkg.in/yaml.v2 v2.4.0 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/BurntSushi/toml v1.1.0 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/gabriel-vasile/mimetype v1.4.10 // indirect | ||
| github.com/go-playground/locales v0.14.1 // indirect | ||
| github.com/go-playground/universal-translator v0.18.1 // indirect | ||
| github.com/google/go-cmp v0.6.0 // indirect | ||
| github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
| github.com/leodido/go-urn v1.4.0 // indirect | ||
| github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| github.com/rivo/uniseg v0.2.0 // indirect | ||
| golang.org/x/net v0.38.0 // indirect | ||
| golang.org/x/sys v0.31.0 // indirect | ||
| golang.org/x/net v0.43.0 // indirect | ||
| golang.org/x/sys v0.36.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| ) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alias of the Alias does not make sense. This pre-existed this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah let me fix that here.