Fork me on GitHub
#polylith
<
2024-04-11
>
timo13:04:36

How can I use one clj-kondo/config.edn for the whole monorepo? I see warnings of unresolved-symbol despite that I excluded this namespace in the root-dir-kondo-config. My lsp wants to add the exclusion in the base

seancorfield15:04:59

You should be running a single lsp server in the root of your repo and it should use the :dev alias when it starts up so it sees everything just like your REPL.

timo15:04:09

indeed, I am running 7 lsps currently :rolling_on_the_floor_laughing:

timo15:04:22

now that I am looking for it is obvious

seancorfield15:04:28

I think we start lsp with :dev:test:build

timo15:04:36

good idea

timo15:04:46

my editor starts it automaticallyy

seancorfield15:04:08

Ah, I use VS Code and it starts the root lsp server only, which may be something I configured...

timo15:04:50

right, I will have to figure that out. thank you