clj-kondo

lassemaatta 2025-07-23T10:21:33.569319Z

I had weird warnings from clj-kondo regarding wrong arities and such; after a bit of debugging I realised that I had moved/renamed a file from .cljs -> .cljc (and later modified it) and it seems like clj-kondo was using stale data related to the old deleted .cljs file. Clearing the .cache fixed this. Should I write an issue about this or is this just one of those things that will never be 100% fool-proof?

borkdude 2025-07-30T08:37:03.220619Z

This is a hard problem. clj-kondo doesn't know about deleted namespaces.. perhaps it could check whether the file it came form is still there or so

borkdude 2025-07-30T08:37:30.417579Z

at least for local files perhaps