Installs pre-commit hooks for OCaml projects that run dune fmt automatically
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lint): rename constructors to v and resolve E332/E331/E410 across packages

Rename create/make to v in rpmsg, error, proxy, auth, version, and
other modules. Fix doc style issues in error.mli, requests.mli, and
expect_continue.mli. Update all callers.

+2 -2
+2 -2
bin/main.ml
··· 438 438 439 439 (* {1 Main} *) 440 440 441 - let main_cmd = 441 + let cmd = 442 442 let doc = "Manage pre-commit hooks for OCaml projects." in 443 443 let man = 444 444 [ ··· 461 461 let default = setup in 462 462 Cmd.group info ~default [ init_cmd; status_cmd; check_cmd; fix_cmd ] 463 463 464 - let () = exit (Cmd.eval main_cmd) 464 + let () = exit (Cmd.eval cmd)