We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99bd69 commit 05ee079Copy full SHA for 05ee079
cljfmt/src/cljfmt/core.cljc
@@ -296,7 +296,7 @@
296
(read-resource "cljfmt/indents/fuzzy.clj")))
297
298
(defmulti ^:private indenter-fn
299
- (fn [sym context [type & args]] type))
+ (fn [_sym _context [type & _args]] type))
300
301
(defmethod indenter-fn :inner [sym context [_ depth idx]]
302
(fn [zloc] (inner-indent zloc sym depth idx context)))
@@ -507,7 +507,7 @@
507
(cond-> (:sort-ns-references? opts)
508
sort-ns-references)
509
(cond-> (:split-keypairs-over-multiple-lines? opts)
510
- (split-keypairs-over-multiple-lines))
+ split-keypairs-over-multiple-lines)
511
(cond-> (:remove-consecutive-blank-lines? opts)
512
remove-consecutive-blank-lines)
513
(cond-> (:remove-surrounding-whitespace? opts)
0 commit comments