-
Hi :) Is it possible to handle user defined macros (passed as |
Beta Was this translation helpful? Give feedback.
Answered by
borkdude
Nov 8, 2023
Replies: 1 comment 14 replies
-
I don't understand your question, please be more elaborate or even better, give a concrete example. |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mode89 Ah yes, I think clj-kondo doesn't play well with functions that aren't qualified via an ns form.
for clj-kondo users you could ask users to write this:
and then expose your macro/functions via
my-api
which you put in SCI's{:namespaces {'my-api ...}}
.When evaluating stuff in the interpreter you could automatically also evaluate
(require '[my-api :refer :all])
beforehand.