My Lein Profile Setup
How I have Leiningen configured to work with Clojure
- prereq: Leiningen
~/.lein/profiles.clj
{:user
{:plugins [[lein-try "0.4.3"]
[lein-midje "3.2.1"]
[lein-cloverage "1.1.2"]
[jonase/eastwood "0.3.10"]]
}}
Dependencies
- Lein Try : Sample lein libraries at the command line, without needing to download them
- Lein Midje : clean Clojure testing framework
- Lein Cloverage : CI/CD of testing for Clojure
- Lein Eastwood : linting for Clojure