This guideline seems not to mention it, but fantomas formats empty type definitions to 3 lines:
type AnEmptyType =
class
end
I think this is pretty lengthy and won't be beneficial, since you can never insert anything between this class and end. Can we change it to one line?
type AnEmptyType = class end
This guideline seems not to mention it, but fantomas formats empty type definitions to 3 lines:
I think this is pretty lengthy and won't be beneficial, since you can never insert anything between this
classandend. Can we change it to one line?