clj-kondo

https://github.com/clj-kondo/clj-kondo
martinklepsch 2020-10-22T14:19:11.207700Z

Is there a way to ignore issues from (comment) blocks?

borkdude 2020-10-22T14:25:14.208700Z

@martinklepsch Jasicher!

#_{:clj-kondo/ignore [:whatever-linter :whatever-linter2]}
(comment ...)

borkdude 2020-10-22T14:25:34.209Z

or just #_:clj-kondo/ignore to ignore all

martinklepsch 2020-10-22T15:22:10.209300Z

awesome, that is perfect. Thank you very much 🙂

lread 2020-10-22T16:13:37.209900Z

We actually currently do this for cljdoc, https://github.com/cljdoc/cljdoc/blob/fb6af911adc9209b986f2776f39394983b97a171/.clj-kondo/config.edn#L2.

😄 1