polylith

timo 2024-04-11T13:50:36.012369Z

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

seancorfield 2024-04-11T15:10:59.444679Z

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.

timo 2024-04-11T15:12:09.110229Z

indeed, I am running 7 lsps currently 🤣

timo 2024-04-11T15:12:22.533189Z

now that I am looking for it is obvious

seancorfield 2024-04-11T15:12:28.089519Z

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

timo 2024-04-11T15:12:36.804409Z

good idea

timo 2024-04-11T15:12:46.659669Z

my editor starts it automaticallyy

seancorfield 2024-04-11T15:13:01.079089Z

Which editor?

timo 2024-04-11T15:13:04.625589Z

neovim

seancorfield 2024-04-11T15:14:08.454109Z

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

timo 2024-04-11T15:14:50.120289Z

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