Skip to content

Commit

Permalink
Merge pull request #70 from sampoto/fix-lint-errors
Browse files Browse the repository at this point in the history
Ignore clj-kondo unresolved-symbol errors in params
  • Loading branch information
erno authored Aug 16, 2023
2 parents a34addb + c561568 commit 3dcfd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/laundry/pdf.clj
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
(api-pdf2txt env tempfile)))
(POST "/pdf2pdfa" []
:summary "attempt to convert a PDF file to PDF/A"
:query-params [{dpi :- s/Int 720} {maxbitmap :- s/Int 0} {pdfsettings :- s/Str "/default"}]
:query-params #_{:clj-kondo/ignore [:unresolved-symbol]} [{dpi :- s/Int 720} {maxbitmap :- s/Int 0} {pdfsettings :- s/Str "/default"}]
:multipart-params [file :- upload/TempFileUpload]
:middleware [wrap-multipart-params]
(let [tempfile (:tempfile file)
Expand Down

0 comments on commit 3dcfd5a

Please sign in to comment.