rescript-compiler icon indicating copy to clipboard operation
rescript-compiler copied to clipboard

formatter formats braces incorrectly for functors in resi

Open tx46 opened this issue 2 months ago • 0 comments

  module Make: Pattern =>
  {
    let fmt: event => string
  }

try this in a resi file. i would expect opening brace to be on same line as Pattern =>, ie:

  module Make: Pattern => {
    let fmt: event => string
  }

tx46 avatar Oct 11 '25 17:10 tx46