Skip to content

Commit 05ee079

Browse files
committed
Fix minor styling inconsistencies
1 parent b99bd69 commit 05ee079

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cljfmt/src/cljfmt/core.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
(read-resource "cljfmt/indents/fuzzy.clj")))
297297

298298
(defmulti ^:private indenter-fn
299-
(fn [sym context [type & args]] type))
299+
(fn [_sym _context [type & _args]] type))
300300

301301
(defmethod indenter-fn :inner [sym context [_ depth idx]]
302302
(fn [zloc] (inner-indent zloc sym depth idx context)))
@@ -507,7 +507,7 @@
507507
(cond-> (:sort-ns-references? opts)
508508
sort-ns-references)
509509
(cond-> (:split-keypairs-over-multiple-lines? opts)
510-
(split-keypairs-over-multiple-lines))
510+
split-keypairs-over-multiple-lines)
511511
(cond-> (:remove-consecutive-blank-lines? opts)
512512
remove-consecutive-blank-lines)
513513
(cond-> (:remove-surrounding-whitespace? opts)

0 commit comments

Comments
 (0)