-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
58 lines (52 loc) · 2.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(defproject scb "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/tools.cli "1.0.206"] ;; cli arg parsing
[clj-http "3.12.3"]
[org.clojure/tools.namespace "1.2.0"]
[org.clojure/data.csv "1.0.0"] ;; csv handling
[gui-diff "0.6.7" :exclusions [net.cgrant/parsley
org.flatland/ordered]] ;; pops up a graphical diff for test results
[org.flatland/ordered "1.5.9"] ;; gui-diff bumped transitive dependency
[clj-commons/fs "1.6.310"]
[clj-http-fake "1.0.3"] ;; fake http responses for testing
[org.clojure/data.json "2.4.0"]
[com.taoensso/timbre "5.1.2"]
[org.flatland/ordered "1.5.9"] ;; an ordered map
[com.taoensso/nippy "3.1.1"] ;; great serialisation/deserialisation
[org.clojure/spec.alpha "0.2.176"]
[orchestra "2018.12.06-2"] ;; improved clojure.spec instrumentation
[enlive "1.1.6"]
[clojure.java-time "0.3.3"] ;; date/time handling library, https://github.com/dm3/clojure.java-time
[slugify "0.0.1"]
[clj-glob "1.0.0"] ;; for /path/*/glob/*ing
]
:managed-dependencies [[org.flatland/ordered "1.5.9"]
;; fixes the annoying:
;; "WARNING: cat already refers to: #'clojure.core/cat in namespace: net.cgrand.parsley.fold, being replaced by: #'net.cgrand.parsley.fold/cat"
;; https://github.com/cgrand/parsley/issues/15
;; see `gui-diff` exclusion
[net.cgrand/parsley "0.9.3"]]
:repl-options {:init-ns scb.user}
:main scb.main
;;:profiles {:user {:plugins [[venantius/yagni "0.1.7"]]}}
:plugins [[jonase/eastwood "0.9.9"]
[lein-cljfmt "0.8.0"]
[lein-cloverage "1.2.4"]
]
:eastwood {:exclude-linters [:constant-test
;;:reflection
]
;; linters that are otherwise disabled
:add-linters [:unused-namespaces
:unused-private-vars
;;:unused-locals ;; prefer to keep for readability
;;:unused-fn-args ;; prefer to keep for readability
;;:keyword-typos ;; bugged with spec?
]
:only-modified true
}
)