This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-01-16
Channels
- # ai (3)
- # babashka (3)
- # beginners (252)
- # calva (56)
- # clj-kondo (6)
- # cljfx (7)
- # cljs-dev (2)
- # cljsrn (2)
- # clojure (72)
- # clojure-france (12)
- # clojurescript (13)
- # conjure (60)
- # garden (18)
- # hoplon (16)
- # jobs (1)
- # leiningen (3)
- # off-topic (18)
- # pathom (5)
- # practicalli (1)
- # reagent (4)
- # reitit (1)
- # remote-jobs (1)
- # reveal (3)
- # shadow-cljs (1)
- # spacemacs (7)
- # xtdb (39)
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