Fork me on GitHub
#clj-kondo
<
2023-04-05
>
James Amberger23:04:26

Hello. I have a shadow-cljs project and I am trying to tell kondo to understand defnc and other helix macros. I haven't had need of a deps.edn, my dependencies are in shadow-cljs.edn. What's the right way to do this?

2
lilactown02:04:16

helix includes configuration for this in the library itself. you should only need to run the clj-kondo command to copy configs

lilactown02:04:57

if you're using shadow-cljs, I think that

$ clj-kondo --lint "$(shadow-cljs classpath)" --dependencies --parallel --copy-configs
will suffice

👍 2
borkdude06:04:49

yes, you need to ensure that a .clj-kondo directory exists first

James Amberger11:04:00

I added that advice to the README lilactown. Thanks everyone