Is there a way to force ocamlformat to always put a newline after let
if followed by a record?
That is, replace the current output
let make ~mnemonic ~output = { mnemonic; output }
with this
let make ~mnemonic ~output =
{ mnemonic; output }