joker

Discuss all things joker, the Clojure interpreter/linter on top of Go. https://github.com/candid82/joker
ccann 2018-11-09T15:31:25.002600Z

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

jumar 2018-11-10T16:31:12.002900Z

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.

1❤️