Fork me on GitHub
#clj-kondo
<
2024-04-28
>
ag19:04:31

What do you do with third-party .clj-kondo config files that get added with dependencies? Do you gitignore them or commit them?

borkdude19:04:05

I usually commit them

👍 2
ag19:04:23

Because I guess you may want to add/modify linters?

ag19:04:44

I should've probably thought about it before asking.

borkdude19:04:23

no because CI and colleagues will also have the same config even if they're not using clojure-lsp

ag19:04:51

Ah, right.

ag19:04:02

Wait, wait what? I thought clojure-lsp utilizes clj-kondo.

borkdude19:04:29

yes, it does

borkdude19:04:51

it auto-imports those configs into .clj-kondo, for others it's a manual call to clj-kondo on the command to do so

ag19:04:15

Ah, so, you're saying, even if I delete these files, clojure-lsp will autoimport them? I guess it will re-create them again?

borkdude19:04:27

yes, via a call to clj-kondo

ag19:04:54

Got it. Thanks a lot!

1