Fork me on GitHub
#clj-kondo
<
2021-03-12
>
zendevil.eth11:03:31

I’m trying to install flycheck-clj-kondo in spacemacs like so:

M-x package-install flycheck-clj-kondo

zendevil.eth11:03:47

but I’m not seeing the flycheck-clj-kondo listed in melpa packages

zendevil.eth11:03:19

I do have the following in user-config

zendevil.eth11:03:20

(require ’package) (add-to-list ‘package-archives ’(“melpa” . “https://melpa.org/packages/”) t) (package-initialize)

borkdude11:03:23

Have you tried package-refresh-contents ?

borkdude11:03:06

I'm not a spacemacs user, maybe try #spacemacs?

borkdude11:03:39

if all else fails, you can just manually download it to get started

zendevil.eth11:03:51

I mean I have it installed with brew

zendevil.eth11:03:59

want to use in spacemacs

borkdude11:03:19

I mean "it" = the elisp package

herald11:03:28

Does anyone here run clj-kondo on linux 5.10 (5.10.22_1 specifically)? After updating from 5.9, the clj-kondo linux binaries will segfault when passing --lint flag.

zendevil.eth11:03:39

i installed it using load-file etc.

zendevil.eth11:03:45

But I don’t think it’s working

zendevil.eth11:03:51

(defn foo [a b] 1)
(foo)
doesn’t give me a warning

borkdude11:03:54

@regen which binary are you using?

herald11:03:57

clj-kondo-2021.03.03-linux-static-amd64.zip

herald11:03:03

i tried the non static as well

borkdude11:03:36

@regen The static one is only intended for Alpine usage

borkdude11:03:55

The dynamic one should work. Make sure you remove the static one, so you are not accidentally using it

herald11:03:10

damn, you're right. I forgot to add ./ when testing the not static. Thanks for your help [=