Ended up adding an exclusion to .clj-kondo/config.edn
for now.
$ clj-kondo --lint project.clj
zsh: segmentation fault (core dumped) clj-kondo --lint project.clj
Where should I start debugging?@ackerleytng are you using the static Linux binary by any chance?
I was! I switched to the regular one and it worked.
FYI, the static one is meant for OSes like alpine which uses musl. On others is a better idea to use the dynamic one. Static binaries have unforeseen issues unfortunately 😕
@ezmiller77 Unresolved var is usually because some other namespace you are using defines vars using some unknown macro
You can exclude that namespace using :unresolved-var {:exclude [the.ns]}}