Fork me on GitHub
#lsp
<
2023-05-12
>
stopa16:05:38

Hey team, noob question: is there a way I can call the clj-kondo that clojure-lsp uses directly? I want to be able to run clj-kondo --lint in the command line for a bug report, and thought this would be handy.

borkdude16:05:33

@U0C5DE6RK a bug report for who?

borkdude16:05:54

if it's for clj-kondo then I recommend just running clj-kondo and not via an upstream tool

borkdude16:05:19

if you don't want to install the binary you can use the JVM version as well

stopa16:05:32

Fair, I'll go ahead and install the binary. Thanks for the quick comment @U04V15CAJ!

borkdude16:05:47

@U0C5DE6RK I think I found the issue in your code:

:clj-kondo/lint-as 'clojure.core/let
you had clojure.core.let but this should be a fully qualified symbol

borkdude16:05:07

oh you found it too :)

stopa16:05:12

sends high five -- the clj-kondo --lint provided a good hint!