Is there a way to keep syntax highlighting in the Conjure log but avoid clj-kondo giving me lint errors? Not a huge deal but a bit distracting.
@orestis is the Conjure log a clojure file?
It's a cljc buffer, in Clojure mode.
But I think it should be an .edn buffer instead. Not sure if Vim provides such a distinction.
You can turn off linting for specific files using a .clj-kondo config: https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#include-and-exclude-files-from-the-output
I'm not sure it's even a real file 🙂
It's not a real files, it's a scratch buffer that half pretends to be Clojure so all of you editing tools work as expected in there. I think the best route is configuring kondo to ignore it (thanks, @borkdude!)
Oh I guess clj-kondo needs just a regex for the filename as reported by the editor, not an actual filesystem glob pattern...
true
it's an unescaped regex