clj-kondo

https://github.com/clj-kondo/clj-kondo
borkdude 2021-06-18T09:34:13.245400Z

clj-kondo new release: 2021.06.18 New - Lint arities of fn arguments to higher order functions (`map`, filter, reduce, etc.) E.g. (map-indexed (fn [i] i) [1 2 3]) will give a warning about the function argument not being able to be called with 2 arguments. - Add map-node and map-node? to hooks API Enhanced / fixed - Disable redefined-var warning in comment - :skip-comments false doesn't override :skip-comments true in namespace config - False positive duplicate element set for symbols/classes https://github.com/clj-kondo/clj-kondo/blob/master/CHANGELOG.md#20210618 Happy linting!

🎉 9
Derek Passen 2021-06-18T19:12:02.248100Z

Anyone know of kondo config for using test.chuck or a convenient lint-as for com.gfredericks.test.chuck.clojure-test/checking which has the form (checking "string identifier" optional-options vec-of-bindings)

borkdude 2021-06-18T19:14:50.248700Z

@dpassen1 doesn't ring a bell, you could write a hook for it, or ignore unresolved symbols in this macro using a config

Derek Passen 2021-06-18T19:15:57.249100Z

Thanks. I will look further into it