Fork me on GitHub
#cider
<
2019-06-13
>
bozhidar06:06:56

@frozenlock CIDER’s REPL uses fipp for printing the results by default. I assume the difference is coming from there.

borkdude11:06:58

gentle reminder, feel free to vote on a convention for refactor-nrepl and other tooling: https://github.com/borkdude/clj-kondo/issues/241#issuecomment-500805941

👌 8
practicalli-johnny11:06:19

I never came across this style of adding requires until you asked, so thanks for that. Is it really used that much? Or is it a recent thing with the advent of spec? If its not used in the majority of code bases, then perhaps it should just be a tooling option you can switch off / on as required.

borkdude11:06:28

style of adding requires?

tatut11:06:58

not only spec, defmethod is side-affecting also

borkdude11:06:28

yes, also loading foreign libs with cljsjs. e.g. (:require [cljsjs.foobar])

practicalli-johnny14:06:29

Interesting. I really had not come across that at all... I have always used either :refer [] or :as with the :require. Something to look out for in future. Thanks for the examples.