Skip to content

Commit f2017f8

Browse files
committed
Fix arities of report-file wrapper fns
1 parent bbc0ce9 commit f2017f8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

cljfmt/src/cljfmt/tool.clj

+7-6
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@
152152
"Checks that the Clojure paths specified by the :paths option are
153153
correctly formatted."
154154
[options]
155-
(let [opts (merge {:report/file #(check-report-file :cli %)
155+
(let [opts (merge {:report/file #(check-report-file :cli %1 %2)
156156
:report/final #(check-report-final :cli %)}
157157
(config/load-config) options)]
158158
(check-no-config opts)))
159159

160160
(defn check-paths
161161
"Runs a check on the provided paths and returns a map detailing the results."
162162
[paths & [options]]
163-
(let [opts (merge {:report/file #(check-report-file :lib %)
163+
(let [opts (merge {:report/file #(check-report-file :lib %1 %2)
164164
:report/final #(check-report-final :lib %)}
165165
(config/load-config) options
166166
{:paths paths})]
@@ -194,9 +194,10 @@
194194

195195
(defn fix-no-config
196196
"The same as `fix`, but ignores dotfile configuration."
197-
[{fix-report :report/fix :keys [parallel?] :as options}]
197+
[{:keys [parallel? report/fix] :as options}]
198198
(let [files (recursively-find-files options)
199-
map* (if parallel? pmap map)]
199+
map* (if parallel? pmap map)
200+
fix-report (partial fix options)]
200201
(->> files
201202
(map* (partial fix-one options))
202203
(map fix-report)
@@ -205,14 +206,14 @@
205206
(defn fix
206207
"Fixes the formatting for all files specified by the :paths option."
207208
[options]
208-
(let [opts (merge {:report/fix #(fix-report :cli %)}
209+
(let [opts (merge {:report/fix #(fix-report :cli %1 %2)}
209210
(config/load-config) options)]
210211
(fix-no-config opts)))
211212

212213
(defn fix-paths
213214
"Fixes code in the provided paths."
214215
[paths & [options]]
215-
(let [opts (merge {:report/fix #(fix-report :lib %)}
216+
(let [opts (merge {:report/fix #(fix-report :lib %1 %2)}
216217
(config/load-config) options
217218
{:paths paths})]
218219
(fix-no-config opts)))

0 commit comments

Comments
 (0)