This repository was archived by the owner on Oct 19, 2021. It is now read-only.

Description
Sometimes you'd like to have an empty function. One example is if I wanted to mock the console
object in case it wasn't defined, I might do something like this:
console ?= log: (->), error: (->)
This currently produces an error from the arrow spacing rule, when I don't think stylistically there's any issue with this code. (The rule does allow (-> )
, which does not seem any better stylistically.)