Created
June 22, 2018 20:20
-
-
Save aviflax/22fb5eae855e30fc14891fec47a16312 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This works from bash but I haven’t managed to get it to work from within a profile in a deps.edn file: | |
| clojure -Sdeps "{:deps {jonase/kibit {:mvn/version \"0.1.6\"}}}" -e "(require '[kibit.driver :as k]) (k/external-run [\"src\"] nil)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I know this might be a bit late but I stumbled across this on Google and was able to get this working in
deps.ednusing something like:{ :aliases { :lint/analyse { :extra-deps { jonase/kibit {:mvn/version "0.1.8" :scope "test"}} :main-opts [ "-e" "(require,'[kibit.driver,:as,k])(k/external-run,[\"src\"],nil)"]}}}