clj-kondo

borkdude 2025-04-07T15:41:54.705189Z

New release! https://clojurians.slack.com/archives/C06MAR553/p1744040460455839

🎉 6
2025-04-07T19:53:14.214949Z

Hi! I'm finding that the new :missing-protocol-method linter doesn't seem to be compatible with :config-in-ns in my config.edn - is this expected?

borkdude 2025-04-07T20:09:38.617299Z

That could very well be. Can you make an issue? For now you could just disable it

borkdude 2025-04-07T20:10:00.635379Z

What would be a reason to provide a partial protocol impl?

2025-04-07T20:14:30.774069Z

Mostly it's relevant in test code, e.g. we have a processing engine that's extensible via a plugin protocol and we want to use reify to exercise certain corner cases

borkdude 2025-04-07T20:14:47.110619Z

makes sense

borkdude 2025-04-07T20:14:59.362759Z

can you also mention that in the issue?

borkdude 2025-04-07T20:15:20.768909Z

an ignore hint might also work, #_:clj-kondo/ignore on the protocol symbol, but perhaps you have a lot of them