Fork me on GitHub
#clj-kondo
<
2021-03-14
>
Ethan Miller00:03:45

Ended up adding an exclusion to .clj-kondo/config.edn for now.

ackerleytng05:03:26

$ clj-kondo --lint project.clj
zsh: segmentation fault (core dumped)  clj-kondo --lint project.clj
Where should I start debugging?

lispyclouds07:03:45

@ackerleytng are you using the static Linux binary by any chance?

ackerleytng23:03:48

I was! I switched to the regular one and it worked.

3
lispyclouds05:03:59

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 😕

borkdude09:03:29

@ezmiller77 Unresolved var is usually because some other namespace you are using defines vars using some unknown macro

borkdude09:03:42

You can exclude that namespace using :unresolved-var {:exclude [the.ns]}}