i dont like commits

This commit is contained in:
Tomas Dvorak
2026-02-24 12:10:13 +01:00
parent 898a3c303f
commit 1d72a1cc01
109 changed files with 43586 additions and 8484 deletions
+27
View File
@@ -0,0 +1,27 @@
package cmd
import "github.com/spf13/cobra"
var reviewCmd = &cobra.Command{
Use: "review [desloppify-review-args...]",
Short: "Run holistic review via desloppify",
DisableFlagParsing: true,
RunE: func(cmd *cobra.Command, args []string) error {
forward := []string{"review"}
if len(args) == 0 {
forward = append(forward,
"--run-batches",
"--runner", "codex",
"--parallel",
"--scan-after-import",
)
} else {
forward = append(forward, args...)
}
return runDesloppifyFromCommand(cmd, forward, true)
},
}
func init() {
rootCmd.AddCommand(reviewCmd)
}