Fork me on GitHub
#clj-kondo
<
2024-05-02
>
TJ Campanella16:05:03

Whats the best way to ignore any unresolved symbol errors in any calls to a specific function? For instance, with function or macro foo (foo x1 x2 x3) how can I tell kondo to not warn about unresolved symbols x1 x2 x3 in any call to foo globally?

borkdude16:05:26

:config-in-call {ns/foo {:linters {:unresolved-symbol {:level :off}}}}