|
152 | 152 | "Checks that the Clojure paths specified by the :paths option are
|
153 | 153 | correctly formatted."
|
154 | 154 | [options]
|
155 |
| - (let [opts (merge {:report/file #(check-report-file :cli %) |
| 155 | + (let [opts (merge {:report/file #(check-report-file :cli %1 %2) |
156 | 156 | :report/final #(check-report-final :cli %)}
|
157 | 157 | (config/load-config) options)]
|
158 | 158 | (check-no-config opts)))
|
159 | 159 |
|
160 | 160 | (defn check-paths
|
161 | 161 | "Runs a check on the provided paths and returns a map detailing the results."
|
162 | 162 | [paths & [options]]
|
163 |
| - (let [opts (merge {:report/file #(check-report-file :lib %) |
| 163 | + (let [opts (merge {:report/file #(check-report-file :lib %1 %2) |
164 | 164 | :report/final #(check-report-final :lib %)}
|
165 | 165 | (config/load-config) options
|
166 | 166 | {:paths paths})]
|
|
194 | 194 |
|
195 | 195 | (defn fix-no-config
|
196 | 196 | "The same as `fix`, but ignores dotfile configuration."
|
197 |
| - [{fix-report :report/fix :keys [parallel?] :as options}] |
| 197 | + [{:keys [parallel? report/fix] :as options}] |
198 | 198 | (let [files (recursively-find-files options)
|
199 |
| - map* (if parallel? pmap map)] |
| 199 | + map* (if parallel? pmap map) |
| 200 | + fix-report (partial fix options)] |
200 | 201 | (->> files
|
201 | 202 | (map* (partial fix-one options))
|
202 | 203 | (map fix-report)
|
|
205 | 206 | (defn fix
|
206 | 207 | "Fixes the formatting for all files specified by the :paths option."
|
207 | 208 | [options]
|
208 |
| - (let [opts (merge {:report/fix #(fix-report :cli %)} |
| 209 | + (let [opts (merge {:report/fix #(fix-report :cli %1 %2)} |
209 | 210 | (config/load-config) options)]
|
210 | 211 | (fix-no-config opts)))
|
211 | 212 |
|
212 | 213 | (defn fix-paths
|
213 | 214 | "Fixes code in the provided paths."
|
214 | 215 | [paths & [options]]
|
215 |
| - (let [opts (merge {:report/fix #(fix-report :lib %)} |
| 216 | + (let [opts (merge {:report/fix #(fix-report :lib %1 %2)} |
216 | 217 | (config/load-config) options
|
217 | 218 | {:paths paths})]
|
218 | 219 | (fix-no-config opts)))
|
0 commit comments