eastwood

All things realted to eastwood - the Clojure linter
2018-10-10T00:02:47.000100Z

The changes are big enough that it isn't obvious to me that it will break anything or not, but in general replacing calls to callback functions with println definitely makes things more straightforward to understand. I suppose if someone calls it from the REPL and doesn't want to see the stuff printed via println, they can do it inside of (binding [*out* ...] ...)

2018-10-10T00:03:27.000100Z

or with-out-str if they want to keep a copy somewhere.

slipset 2018-10-10T04:41:55.000100Z

Thing is that lint, the function that is meant to be called from the repl, is using a SilentReporter, which doesn’t print all that much.

slipset 2018-10-10T04:43:25.000100Z

Also, you’re free to pass your own reporters, with corresponding multi methods to further customize output.