clj-kondo

https://github.com/clj-kondo/clj-kondo
borkdude 2021-03-07T12:42:03.222Z

Found a .cljc case where I'll definitely write a linter for:

(deftest foo-test
  #?(:clj
     (testing "foo"
       (prn :x))
     (testing "bar"
       (prn :y))))

lein test sci.reify-test
:x

(note: no :y)

😅 1