Skip to content

Commit 45cc624

Browse files
committed
Set up and satisfy :pedantic?
1 parent 9f147e8 commit 45cc624

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

project.clj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:scm {:name "git" :url "https://github.com/clojure-emacs/cider-nrepl"}
77
:dependencies [[nrepl "0.8.3"]
8-
^:inline-dep [cider/orchard "0.7.2"]
8+
^:inline-dep [cider/orchard "0.7.2" :exclusions [com.google.code.findbugs/jsr305 com.google.errorprone/error_prone_annotations]]
99
^:inline-dep [thunknyc/profile "0.5.2"]
1010
^:inline-dep [mvxcvi/puget "1.3.1"]
1111
^:inline-dep [fipp "0.6.24"] ; can be removed in unresolved-tree mode
@@ -17,6 +17,11 @@
1717
^:inline-dep [org.clojure/tools.reader "1.3.6"]]
1818
:exclusions [org.clojure/clojure] ; see Clojure version matrix in profiles below
1919

20+
:pedantic? ~(if (System/getenv "CI")
21+
:abort
22+
;; :pedantic? can be problematic for certain local dev workflows:
23+
false)
24+
2025
:plugins [[thomasa/mranderson "0.5.3"]]
2126
:mranderson {:project-prefix "cider.nrepl.inlined-deps"
2227
:overrides {[mvxcvi/puget fipp] [fipp "0.6.18"]} ; only takes effect in unresolved-tree mode
@@ -59,7 +64,7 @@
5964
:sign-releases false}]]
6065

6166
:profiles {:provided {:dependencies [[org.clojure/clojure "1.10.1"]
62-
[org.clojure/clojurescript "1.10.520" :scope "provided"]]
67+
[org.clojure/clojurescript "1.10.866" :scope "provided"]]
6368
:test-paths ["test/spec"]}
6469

6570
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]

0 commit comments

Comments
 (0)