I’d like a fuzzy var finder in my editor and I like the idea of using clj-kondo for it since it doesn’t require a REPL connection etc. How would I go about getting that metadata from clj-kondo?
@martinklepsch This page should get you going: https://github.com/clj-kondo/clj-kondo/blob/master/analysis/README.md
@martinklepsch An example script I've built recently with bb + clj-kondo to get an API diff: https://gist.github.com/borkdude/ba372c8cee311e31020b04063d88e1be
Via calva > lsp > kondo (I think..):
> Unused declaration: foo clojure-lsp(unused-public)
Tried: #_{:clj-kondo/ignore [:unused-public]}
but that does not ignore.
@claudius.nicolae The issue in that channel is that the warning is coming from clojure-lsp, not from clj-kondo itself
So it's not a clj-kondo issue