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: add missing package dependencies found by monopam lint

Adds 108 missing dependency declarations across 52 packages.
Most common missing dep was fmt (38 packages), followed by wire,
eio, and bytesrw. Also improves lint output with tty tables and
better subtree filtering display.

+8
+4
dune-project
··· 18 18 (depends 19 19 (ocaml (>= 4.08)) 20 20 (cmdliner (>= 1.2)) 21 + (eio (>= 1.0)) 22 + (fmt (>= 0.9)) 23 + (git (>= 0.1)) 24 + (re (>= 1.0)) 21 25 (ocamlformat :with-dev-setup) 22 26 (alcotest :with-test)))
+4
precommit.opam
··· 10 10 "dune" {>= "3.0"} 11 11 "ocaml" {>= "4.08"} 12 12 "cmdliner" {>= "1.2"} 13 + "eio" {>= "1.0"} 14 + "fmt" {>= "0.9"} 15 + "git" {>= "0.1"} 16 + "re" {>= "1.0"} 13 17 "ocamlformat" {with-dev-setup} 14 18 "alcotest" {with-test} 15 19 "odoc" {with-doc}