lein-kibit/project.clj
Kapil Reddy ad64732baa Allow custom kibit rules
project.clj will need to have following entry

:kibit {:rules (merge kibit.rules/rule-map
                      {:ctrl test/rules})
        :source-paths ["rules"]}

All namespaces found in source-paths dir will be required during kibit
run.

Update kibit version in project.clj and 'kibit-project'
2015-08-29 18:10:25 +12:00

8 lines
341 B
Clojure

(defproject lein-kibit "0.1.2"
:description "kibit lein plugin"
:url "https://github.com/jonase/lein-kibit"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[jonase/kibit "0.1.2"]
[org.clojure/tools.namespace "0.2.11"]]
:eval-in-leiningen true)