Ocamlformat: forcing a newline

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 }

If you aren’t reliant specifically on ocamlformat, Topiary formatter has this behavior out of the box.

Any tips for configuring it?

I mostly like the Jane St profile.