diff --git a/.clj-kondo/config.edn b/.clj-kondo/config.edn index fa20942ef3..498e119204 100644 --- a/.clj-kondo/config.edn +++ b/.clj-kondo/config.edn @@ -62,15 +62,7 @@ ;; https://github.com/borkdude/clj-kondo/issues/867 :unresolved-symbol {:exclude [PersistentPriorityMap.EMPTY number - status-im.test-helpers/restore-app-db - - ;; When the namespace - ;; matcher-combinators.test is loaded, it - ;; extends cljs.test/is macro with - ;; directives `match?` and - ;; `thrown-match?`. - match? - thrown-match?]} + status-im.test-helpers/restore-app-db]} :unresolved-var {:level :error} :unsorted-required-namespaces {:level :error} :unused-alias {:level :warning} diff --git a/.clj-kondo/nubank/matcher-combinators/config.edn b/.clj-kondo/nubank/matcher-combinators/config.edn new file mode 100644 index 0000000000..ea4ded7232 --- /dev/null +++ b/.clj-kondo/nubank/matcher-combinators/config.edn @@ -0,0 +1,4 @@ +{:linters + {:unresolved-symbol + {:exclude [(cljs.test/is [match? thrown-match?]) + (clojure.test/is [match? thrown-match?])]}}}