does anyone have a script handy that will call joker in lint mode on all the .clj files in my project and return 0/1 given no linting errors / some errors
I don't have a complete script but you can start with this:
find src -name '*.clj' -exec joker --lint {} \; &>joker.out
Perhaps just grep for error/warning or whatever you want.