Skip to content

Commit 54d3e0a

Browse files
committed
fix formatting
1 parent 2a7eb66 commit 54d3e0a

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

cronut-integrant/project.clj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@
2222
:javax {:dependencies [[io.factorhouse/cronut "0.2.7"]]} ;; TODO fix up after release
2323
:smoke {:pedantic? :abort}}
2424

25-
:aliases {"check" ["with-profile" "+smoke,+jakarta" "check"]
26-
"kondo" ["with-profile" "+smoke,+jakarta" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
27-
"fmt" ["with-profile" "+smoke,+jakarta" "cljfmt" "check"]}
25+
:aliases {"check" ["with-profile" "+smoke,+jakarta" "check"]
26+
"kondo" ["with-profile" "+smoke,+jakarta" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
27+
"fmt" ["with-profile" "+smoke,+jakarta" "cljfmt" "check"]
28+
"fmtfix" ["with-profile" "+smoke" "cljfmt" "fix"]}
2829

2930
:source-paths ["src"]
3031
:test-paths ["test"]

cronut-javax/project.clj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020
[clj-kondo "2025.06.05"]]}
2121
:smoke {:pedantic? :abort}}
2222

23-
:aliases {"check" ["with-profile" "+smoke" "check"]
24-
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
25-
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
23+
:aliases {"check" ["with-profile" "+smoke" "check"]
24+
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
25+
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]
26+
"fmtfix" ["with-profile" "+smoke" "cljfmt" "fix"]}
2627

2728
:source-paths ["src"]
2829
:test-paths ["test"]

cronut/project.clj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121
[clj-kondo "2025.06.05"]]}
2222
:smoke {:pedantic? :abort}}
2323

24-
:aliases {"check" ["with-profile" "+smoke" "check"]
25-
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
26-
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
24+
:aliases {"check" ["with-profile" "+smoke" "check"]
25+
"kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:src:test:test" "--parallel"]
26+
"fmt" ["with-profile" "+smoke" "cljfmt" "check"]
27+
"fmtfix" ["with-profile" "+smoke" "cljfmt" "fix"]}
2728

2829
:source-paths ["src"]
2930
:test-paths ["test"]

cronut/src/cronut/job.clj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@
3737
(defn detail
3838
[job concurrent-execution-disallowed?]
3939
(let [{:keys [identity description recover? durable? disallow-concurrent-execution?]} job]
40-
(.build (cond->
41-
(-> (JobBuilder/newJob (if (or concurrent-execution-disallowed? ;; global concurrency disallowed flag
42-
disallow-concurrent-execution?) ;; job specific concurrency dissalowed flag
43-
SerialProxyJob ProxyJob))
44-
(.setJobData (JobDataMap. {"job-impl" job})))
40+
(.build (cond-> (-> (JobBuilder/newJob (if (or concurrent-execution-disallowed? ;; global concurrency disallowed flag
41+
disallow-concurrent-execution?) ;; job specific concurrency dissalowed flag
42+
SerialProxyJob ProxyJob))
43+
(.setJobData (JobDataMap. {"job-impl" job})))
4544
(seq identity) (.withIdentity (first identity) (second identity))
4645
description (.withDescription description)
4746
(boolean? recover?) (.requestRecovery recover?)

0 commit comments

Comments
 (0)