reasonml / reason-cli

Globally installable Reason toolchain.
MIT License
291 stars 23 forks source link

Whitespace with new fast pipes? #93

Open Anahkiasen opened 5 years ago

Anahkiasen commented 5 years ago

I updated refmt to 3.3.3 and it modified one my blocks in the following way

-  expenditure
-  |. getExpenditureAccounts
-  |. Belt.List.fromArray
-  |. Belt.List.getBy(id => id == accountId)
-  |. Option.isSome;
+  expenditure->getExpenditureAccounts->Belt.List.fromArray->(Belt.List.getBy(id => id == accountId))->Option.isSome;

Now I'm aware of the change from |. to -> but does the whitespace need to be discarded around the operator for it to work? I don't particularly find the updated code easier to read, quite the opposite :/

Could it not simply reformat it to this?

expenditure
-> getExpenditureAccounts
-> Belt.List.fromArray
-> Belt.List.getBy(id => id == accountId)
-> Option.isSome;