blob: 2a39aff035d25534c49de8e4d7e3fd350683095e [file] [log] [blame]
// Copyright 2023 The Shac Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cli
import (
"context"
flag "github.com/spf13/pflag"
"go.fuchsia.dev/shac-project/shac/internal/engine"
)
type fixCmd struct {
commandBase
quiet bool
}
func (*fixCmd) Name() string {
return "fix"
}
func (*fixCmd) Description() string {
return "Run non-formatter checks and make suggested fixes."
}
func (c *fixCmd) SetFlags(f *flag.FlagSet) {
c.commandBase.SetFlags(f)
// TODO(olivernewman): Move the --quiet flag into cmdBase and make it apply
// to the `check` command as well.
f.BoolVar(&c.quiet, "quiet", false, "Disable non-error output")
}
func (c *fixCmd) Execute(ctx context.Context, files []string) error {
o, err := c.options(files)
if err != nil {
return err
}
o.Filter.FormatterFiltering = engine.OnlyNonFormatters
return engine.Fix(ctx, &o, c.quiet)
}