-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
41 lines (39 loc) · 2.17 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(defproject nanoweave "1.2.8"
:description "A data transformation tool"
:url "http://github.com/noxharmonium/nanoweave"
:license {:name "Apache License, Version 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[org.clojure/clojure "1.12.0"]
[org.blancas/kern "1.1.0"]
[org.clojure/tools.cli "1.1.230"]
[prismatic/schema "1.4.1"]
[rhizome "0.2.9"]
[cheshire "5.13.0"]
[org.clojure/data.xml "0.0.8"]
[org.clojure/data.csv "1.1.0"]
[org.clojure/tools.macro "0.2.1"]]
:main ^:skip-aot nanoweave.core
:target-path "target/%s"
:global-vars {*warn-on-reflection* true}
:jvm-opts ["-Djava.awt.headless=true"]
:plugins []
:profiles {:uberjar {:aot :all}
:dev {:resource-paths ["test/resources"]
:plugins [[rasom/lein-githooks "0.1.5"]
[jonase/eastwood "1.4.3"]
[lein-cljfmt "0.9.2"]
[com.github.clj-kondo/lein-clj-kondo "0.2.5"]
[lein-codox "0.10.8"]]
:dependencies [[diff-eq "0.2.5"]]
:githooks {:pre-push ["lein check" "lein test"]
:pre-commit ["lein eastwood" "lein clj-kondo" "lein cljfmt check"]}}
:repl {:source-paths ["profiles"]
:repl-options {:init-ns repl.repl-env}
:dependencies [[org.clojure/tools.namespace "1.5.0"]]}}
:eastwood {:config-files ["lint_config.clj"]
:exclude-linters [; The magic of 'declare-extern' requires a call to ns. I need that macro to avoid circular references.
:wrong-ns-form
; The defrecord macro expands to a redundant (but harmless) dissoc statement when creating a record with no attributes (in this case NilLit).
; No matter what I do, I can't get this error to be ignored via disable-warning or ignored-faults
:suspicious-expression]}
:cljfmt {:remove-multiple-non-indenting-spaces? true})