Skip to content

Instantly share code, notes, and snippets.

@OlegTheCat
Last active November 10, 2017 08:40
Show Gist options
  • Save OlegTheCat/b11a4a4593f92879e519 to your computer and use it in GitHub Desktop.
Save OlegTheCat/b11a4a4593f92879e519 to your computer and use it in GitHub Desktop.
My current ~/.lein/profiles.clj
{:user {:plugins [[lein-localrepo "0.5.3"]
[jonase/eastwood "0.2.3"]
[lein-pprint "1.1.1"]
[lein-ancient "0.6.8"]
[lein-cljfmt "0.5.6"]
[lein-bikeshed "0.3.0"]
[lein-environ "1.1.0"]
[lein-nvd "0.3.0"]
[lein-cloverage "1.0.9"]
[walmartlabs/vizdeps "0.1.4"]]
:dependencies [[acyclic/squiggly-clojure "0.1.5"]
[jsofra/data-scope "0.1.0"]
[philoskim/debux "0.2.1"]
[im.chit/vinyasa.inject "0.2.0"]
[slamhound "1.5.5"]]
:injections [(require 'data-scope.charts)
(require 'data-scope.graphs)
(require 'data-scope.inspect)
(require 'data-scope.pprint)
(require 'debux.core)
(require 'vinyasa.inject)
(vinyasa.inject/inject
'clojure.core '>
'[[debux.core dbg]])
(in-ns 'user)
(defn set-print-length-and-level [length level]
(set! *print-length* length)
(set! *print-level* level))
(set-print-length-and-level 100 10)]
:aliases {"slamhound" ["run" "-m" "slam.hound"]}
:eastwood {:exclude-linters [:constant-test]
:add-linters [:unused-private-vars
:unused-locals
:unused-fn-args]}
:env {:squiggly {:eastwood-options
{:exclude-linters [:constant-test]
:add-linters [:unused-private-vars
:unused-locals
:unused-fn-args]}}}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment