How to remove unused dependencies from a clojure leiningen project? -
i have leiningen clojure project , there lot of dependencies in it. want automatically remove of dependencies not being used. how do this? please help.
bare hands: comment dependency entry suspect useless using #_
(eg. #_[org.ow2.asm/asm-all "4.2"]
) , try compile.
with tool: eastwood clojure linter implemented leiningen plugin. need using :unused-namespaces
option (not enabled default). i'll let head doc.
Comments
Post a Comment