tweag / topiary

https://topiary.tweag.io/
MIT License
575 stars 29 forks source link

Weird mix of single- and multi-line for `module` in a `module type` #644

Closed Niols closed 1 year ago

Niols commented 1 year ago

As of 48659c7, Topiary formats:

module type F = sig
  module G : sig val h : string end
end

into:

module type F = sig module G: sig val h : string end
end