Is it possible to disable a linter (e.g. arity level) for a specific defn? So that I don’t need to write ignore on every form calling it, but still have arity lints for other defns? Context: https://clojurians.slack.com/archives/C03A6GE8D32/p1744388923561669?thread_ts=1744294891.191849&channel=C03A6GE8D32&message_ts=1744388923.561669
Perhaps using :config-in-call ?
https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md
That's it! Thank you