This repository was archived by the owner on Aug 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
73 lines (58 loc) · 2.15 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
(defproject metabase/honeysql-util "1.0.2"
:description "Helpful utility functions for HoneySQL."
:url "https://github.com/metabase/honeysql-util"
:min-lein-version "2.5.0"
:license {:name "Eclipse Public License"
:url "https://raw.githubusercontent.com/metabase/honeysql-util/master/LICENSE"}
:aliases
{"test" ["with-profile" "+expectations" "expectations"]
"bikeshed" ["with-profile" "+bikeshed" "bikeshed" "--max-line-length" "120"]
"check-namespace-decls" ["with-profile" "+check-namespace-decls" "check-namespace-decls"]
"eastwood" ["with-profile" "+eastwood" "eastwood"]
"docstring-checker" ["with-profile" "+docstring-checker" "docstring-checker"]
;; `lein lint` will run all linters
"lint" ["do" ["eastwood"] ["bikeshed"] ["check-namespace-decls"] ["docstring-checker"]]}
:dependencies
[[honeysql "0.9.4" :exclusions [org.clojure/clojurescript]]
[metabase/common "1.0.4"]
[prismatic/schema "1.1.11"]]
:profiles
{:dev
{:dependencies
[[org.clojure/clojure "1.10.1"]
[expectations "2.2.0-beta2"]]
:injections
[(require 'expectations)
((resolve 'expectations/disable-run-on-shutdown))]
:jvm-opts
["-Xverify:none"]}
:expectations
{:plugins [[lein-expectations "0.0.8" :exclusions [expectations]]]}
:eastwood
{:plugins
[[jonase/eastwood "0.3.5" :exclusions [org.clojure/clojure]]]
:add-linters
[:unused-private-vars
:unused-namespaces
:unused-fn-args
:unused-locals]
:exclude-linters
[:deprecations]}
:docstring-checker
{:plugins
[[docstring-checker "1.0.3"]]
:docstring-checker
{:exclude [#"test"]}}
:bikeshed
{:plugins
[[lein-bikeshed "0.5.2"]]}
:check-namespace-decls
{:plugins [[lein-check-namespace-decls "1.0.2"]]
:source-paths ["test"]
:check-namespace-decls {:prefix-rewriting true}}}
:deploy-repositories
[["clojars"
{:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]])