Add wsl linter and fix

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-05-19 14:51:08 +04:00
parent eedfdcecc8
commit 9156d6a16a
882 changed files with 6068 additions and 574 deletions

View File

@@ -189,6 +189,7 @@ func NewCmdLogin(f *cmdutil.Factory) *cobra.Command {
if orgsErr == nil && len(orgs) > 0 {
selected := orgs[0].ID
options := make([]huh.Option[string], 0, len(orgs)+1)
for _, org := range orgs {
options = append(
@@ -199,6 +200,7 @@ func NewCmdLogin(f *cmdutil.Factory) *cobra.Command {
),
)
}
options = append(
options,
huh.NewOption("Skip (no default)", ""),
@@ -260,6 +262,7 @@ func normalizeHostToURL(host string) string {
if strings.HasPrefix(lower, "http://") || strings.HasPrefix(lower, "https://") {
return strings.TrimRight(host, "/")
}
return "https://" + strings.TrimRight(host, "/")
}
@@ -279,6 +282,7 @@ func fetchDiscovery(client *http.Client, baseURL string) (*oidcDiscovery, error)
if err != nil {
return nil, fmt.Errorf("cannot fetch discovery document: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
@@ -327,6 +331,7 @@ func requestDeviceCode(
if err != nil {
return nil, fmt.Errorf("cannot request device code: %w", err)
}
defer func() { _ = resp.Body.Close() }()
body, err := io.ReadAll(resp.Body)
@@ -391,6 +396,7 @@ func pollForToken(
body, err := io.ReadAll(resp.Body)
_ = resp.Body.Close()
if err != nil {
return nil, fmt.Errorf("cannot read token response: %w", err)
}
@@ -400,6 +406,7 @@ func pollForToken(
if err := json.Unmarshal(body, &token); err != nil {
return nil, fmt.Errorf("cannot decode token response: %w", err)
}
return &token, nil
}

View File

@@ -64,6 +64,7 @@ func NewCmdLogout(f *cmdutil.Factory) *cobra.Command {
for i, h := range hosts {
options[i] = huh.NewOption(h, h)
}
err := huh.NewSelect[string]().
Title("Select a host to log out of").
Options(options...).
@@ -85,6 +86,7 @@ func NewCmdLogout(f *cmdutil.Factory) *cobra.Command {
revokeTokens(flagHost, hc, f)
delete(cfg.Hosts, flagHost)
if cfg.ActiveHost == flagHost {
cfg.ActiveHost = ""
}
@@ -152,6 +154,7 @@ func fetchRevocationEndpoint(client *http.Client, baseURL string) (*oidcDiscover
if err != nil {
return nil, fmt.Errorf("cannot fetch discovery document: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
@@ -194,6 +197,7 @@ func revokeToken(
if err != nil {
return fmt.Errorf("cannot send revocation request: %w", err)
}
defer func() { _ = resp.Body.Close() }()
if resp.StatusCode != http.StatusOK {
@@ -208,5 +212,6 @@ func normalizeHostToURL(host string) string {
if strings.HasPrefix(lower, "http://") || strings.HasPrefix(lower, "https://") {
return strings.TrimRight(host, "/")
}
return "https://" + strings.TrimRight(host, "/")
}

View File

@@ -46,6 +46,7 @@ func NewCmdStatus(f *cmdutil.Factory) *cobra.Command {
if host == cfg.ActiveHost {
label += " (active)"
}
_, _ = fmt.Fprintf(
f.IOStreams.Out,
"%s\n",
@@ -56,6 +57,7 @@ func NewCmdStatus(f *cmdutil.Factory) *cobra.Command {
if hc.Token != "" {
tokenStatus = "set"
}
_, _ = fmt.Fprintf(
f.IOStreams.Out,
" Token: %s\n",