Is there a way to prevent clj-kondo from warning about clojure.data.xml/alias-uri
(https://github.com/clojure/data.xml/blob/04db68059e1f4ba3b07ee153cb1a73175ede51cd/README.md#namespace-support)? I've tried adding {:lint-as {clojure.data.xml/alias-uri clojure.core/alias}}
, but that doesn't seem to work.
@flowthing Can you try:
:clj-kondo/config '{:linters {:unresolved-namespace {:exclude [foo]}}}
?This should be supported since the newest clj-kondo
That works — thank you!
is there support fore core.match
?
right now
(into [name]
(match [from-to-state]
[(:or [nil _]
[:installed (:or :forbidden :uninstalled)]
failsthere is not (yet)
ok thanks 🙂