reason-cli icon indicating copy to clipboard operation
reason-cli copied to clipboard

Whitespace with new fast pipes?

Open Anahkiasen opened this issue 5 years ago • 0 comments

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;

Anahkiasen avatar Nov 16 '18 20:11 Anahkiasen