Skip to content

Commit

Permalink
cmd(verify): Enable show-builtin-errors by default (#922)
Browse files Browse the repository at this point in the history
When unit testing, users are likely to prefer being informed of builtin
errors encountered, such as when parsing configurations.

Signed-off-by: James Alseth <james@jalseth.me>
  • Loading branch information
jalseth committed Feb 27, 2024
1 parent dfcc0d9 commit 343d024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/commands/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func NewVerifyCommand(ctx context.Context) *cobra.Command {
cmd.Flags().Bool("trace", false, "Enable more verbose trace output for Rego queries")
cmd.Flags().Bool("strict", false, "Enable strict mode for Rego policies")
cmd.Flags().String("report", "", "Shows output for Rego queries as a report with summary. Available options are {full|notes|fails}.")
cmd.Flags().Bool("show-builtin-errors", false, "Collect and return all encountered built-in errors")
cmd.Flags().Bool("show-builtin-errors", true, "Collect and return all encountered built-in errors")

cmd.Flags().StringP("output", "o", output.OutputStandard, fmt.Sprintf("Output format for conftest results - valid options are: %s", output.Outputs()))
cmd.Flags().Bool("junit-hide-message", false, "Do not include the violation message in the JUnit test name")
Expand Down

0 comments on commit 343d024

Please sign in to comment.