Skip to content
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

IND-2779 linting, .go-version fie added #9

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Conversation

KaushikiAnand
Copy link

  • I have added linting to go-tests.yml. .go-version file was added.
  • The linting was done to ensure that the codebase is consistent and maintainable and helps in improving the code quality and reducing errors. The .go-version file was added to find the security vulnerabilities in a repo.

@KaushikiAnand KaushikiAnand requested a review from a team as a code owner March 27, 2025 12:25
cli.go Outdated
@@ -190,13 +188,17 @@ func (c *CLI) Run() (int, error) {

// Just show the version and exit if instructed.
if c.IsVersion() && c.Version != "" {
c.HelpWriter.Write([]byte(c.Version + "\n"))
if _, err := c.HelpWriter.Write([]byte(c.Version + "\n")); err != nil {
return 1, err

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: error code 1 stands for Operation not permitted which may not be the case here. I think error code 5 will be a better fit over here

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

replaced error code to 5 from 1 for all write errors as suggested

cli.go Outdated
return 0, nil
}

// Just print the help when only '-h' or '--help' is passed.
if c.IsHelp() && c.Subcommand() == "" {
c.HelpWriter.Write([]byte(c.HelpFunc(c.helpCommands(c.Subcommand())) + "\n"))
if _, err := c.HelpWriter.Write([]byte(c.HelpFunc(c.helpCommands(c.Subcommand())) + "\n")); err != nil {
return 1, err

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The above statement is valid for all write errors

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

replaced error code to 5 from 1 for all write errors as suggested

@@ -557,12 +564,12 @@ func (c *CLI) commandHelp(out io.Writer, command Command) {
// Get the command
raw, ok := subcommands[k]
if !ok {
c.ErrorWriter.Write([]byte(fmt.Sprintf(
_, _ = c.ErrorWriter.Write([]byte(fmt.Sprintf(

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment: We should not be leaving out errors but with the current implementation it doesn't give a lot of options for return values
Maybe we can add a TODO over here to address this later

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO was added

ui_test.go Outdated
errors <- err
}()
select {
case err := <-errors:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: I dont think you need a select over here. You can move the consumption of errors to after ui.Ask(tc.query) is done

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggested change has been made.

ui_test.go Outdated
errors <- err
}()
select {
case err := <-errors:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: Can you check if the the consumption of errors can be moved to line 92 over here as well ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants