Fork me on GitHub
#clj-kondo
<
2023-11-03
>
Noah Bogart14:11:42

is there a neat way to get a summary of the kinds of errors/warnings in a project? so instead of each individual error, you get :unused-local-var - 50 warnings, :syntax-error - 10 errors etc

borkdude14:11:16

you can programmatically create this by using clj-kondo as a JVM or bb library

👍 1
Noah Bogart14:11:41

are there examples in the repo of programmatically working on the results?

borkdude14:11:54

no but it's very straightforward, just check the :findings thing from the returned map

Noah Bogart14:11:12

excellent, thank you