I have a repository with two clojure projects in it (a client and a server). When using clojure-lsp (with emacs) it seems the unused var detection is wrong. I was wondering if it could be that it doesn’t know where the project root is? Is there anything I can do to debug this?
clj-kondo seems to report it correctly
It will depend on the project root configured by you when you first imported the project
You can lsp-workspace-folders-remove
and then lsp
Then select the project root manually
Thanks for the explanation :thumbsup: That seems to fix it
Good 🙂