-
Notifications
You must be signed in to change notification settings - Fork 9
/
lint.go
46 lines (40 loc) · 1.34 KB
/
lint.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package cmd
import (
"context"
"fmt"
"github.com/spf13/cobra"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/console"
"namespacelabs.dev/foundation/internal/console/colors"
"namespacelabs.dev/foundation/internal/fnerrors/format"
"namespacelabs.dev/foundation/internal/parsing"
"namespacelabs.dev/foundation/std/cfg"
)
func NewLintCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "lint [path/to/package]...",
Short: "Verify if package definitions are correct.",
}
var (
env cfg.Context
locs fncobra.Locations
)
return fncobra.Cmd(cmd).
With(
fncobra.ParseEnv(&env),
fncobra.ParseLocations(&locs, &env, fncobra.ParseLocationsOpts{ReturnAllIfNoneSpecified: true})).
Do(func(ctx context.Context) error {
for _, loc := range locs.Locations {
fmt.Fprintln(console.Stderr(ctx), "Checking", loc.AsPackageName())
if _, err := parsing.LoadPackageByName(ctx, env, loc.AsPackageName()); err != nil {
fmt.Fprintln(console.Stderr(ctx))
format.Format(console.Stderr(ctx), err, format.WithStyle(colors.WithColors))
fmt.Fprintln(console.Stderr(ctx))
}
}
return nil
})
}