Fork me on GitHub
#clj-kondo
<
2023-11-07
>
mikerod00:11:57

I ran into a unresolved-symbol kondo linting issue with cljs having a ns :require of the form [jszip :as JSZip] where jszip is a node dep. I had a line where I called it as a constructor (JSZip.) and that failed linting, via Error: Unresolved symbol: JSZip For now, I just suppress the warning. I think some kondo upgrade within the last several months is where this started to fail since I was upgrading this project today after like 6 months or so.

borkdude07:11:28

Use a string name for Js deps

borkdude07:11:14

This isn’t related to clj-kondo upgrade, it’s been like this for a long time

mikerod15:11:12

Oh. Thanks. I should have already knew this. I do that all the time. Then I forgot. 😵