Fork me on GitHub
#clj-kondo
<
2021-01-16
>
martinklepsch13:01:20

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?

borkdude13:01:05

@martinklepsch An example script I've built recently with bb + clj-kondo to get an API diff: https://gist.github.com/borkdude/ba372c8cee311e31020b04063d88e1be

clyfe16:01:30

Via calva > lsp > kondo (I think..): > Unused declaration: foo clojure-lsp(unused-public) Tried: #_{:clj-kondo/ignore [:unused-public]} but that does not ignore.

borkdude16:01:35

@claudius.nicolae The issue in that channel is that the warning is coming from clojure-lsp, not from clj-kondo itself

borkdude16:01:43

So it's not a clj-kondo issue

👍 3