Merged support for the core.match/match macro to master now. https://github.com/clj-kondo/clj-kondo/issues/496 Give it a try if you're using this lib.
@borkdude I can have a stab at 1149. Feel free to ping me as a DM 🙂 I may have a bit of time over the weekend.
Sure! The relevant section is here: https://github.com/clj-kondo/clj-kondo/blob/fe45dd7710483965f703a01b52cef8ac6977748e/src/clj_kondo/impl/linters.clj#L481 All used bindings are available there. So when there is a binding that is used and starts with an underscore, a warning should be emitted.
The other relevant bit is here: https://github.com/clj-kondo/clj-kondo/blob/293f777bda157eaa1ebc75f9b2eb124fcf5b25a9/src/clj_kondo/impl/namespace.clj#L232 Maybe that is also a good spot to do it.
Let me know if you have any questions.
Right, have a test and it's failing, which means I know where to make it work 🙂