Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
AdheipSingh committed Oct 15, 2024
1 parent 676828c commit adab515
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmd/about.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"io"
)

// Define the struct
// About struct
type About struct {
Version string `json:"version"`
UIVersion string `json:"uiVersion"`
Expand All @@ -43,13 +43,13 @@ type About struct {
QueryEngine string `json:"queryEngine"`
}

// Define the Store struct
// Store struct
type Store struct {
Type string `json:"type"`
Path string `json:"path"`
}

// Define the Analytics struct
// Analytics struct
type Analytics struct {
ClarityTag string `json:"clarityTag"`
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func main() {

cli.CompletionOptions.HiddenDefaultCmd = true

// create a default profile if file does not exist
// create a default profile if file does not exist
if previousConfig, err := config.ReadConfigFromFile(); os.IsNotExist(err) {
conf := config.Config{
Profiles: map[string]config.Profile{"demo": defaultInitialProfile()},
Expand Down

0 comments on commit adab515

Please sign in to comment.