File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 5252 ; ;
5353 :lint-cache {:replace-paths [" src" ]} ; ; when building classpath we want to exclude resources
5454 ; ; so we do not pick up our own clj-kondo config exports
55- :clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version " 2024.05.24 " }}
55+ :clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version " 2024.08.01 " }}
5656 :override-deps {org.clojure/clojure {:mvn/version " 1.11.3" }}
5757 :main-opts [" -m" " clj-kondo.main" ]}
5858
Original file line number Diff line number Diff line change 2525 with-out-str
2626 string/trim)
2727 bb-cp (bbcp/get-classpath )]
28-
29- (status/line :detail " - copying configs" )
30- (shell/command " clojure -M:clj-kondo --skip-lint --copy-configs --lint" clj-cp bb-cp)
31- (status/line :detail " - creating cache" )
32- (shell/command " clojure -M:clj-kondo --dependencies --parallel --lint" clj-cp bb-cp)))
28+ (status/line :detail " - copying lib configs and creating cache" )
29+ (shell/command " clojure -M:clj-kondo --skip-lint --copy-configs --dependencies --lint" clj-cp bb-cp)))
3330
3431(defn- check-cache [{:keys [rebuild-cache]}]
3532 (status/line :head " clj-kondo: cache check" )
5350 (status/line :head " clj-kondo: linting" )
5451 (let [{:keys [exit]}
5552 (shell/command {:continue true }
56- " clojure -M:clj-kondo --lint src test script deps.edn build.clj" )]
53+ " clojure -M:clj-kondo --parallel -- lint src test script deps.edn build.clj" )]
5754 (cond
5855 (= 2 exit) (status/die exit " clj-kondo found one or more lint errors" )
5956 (= 3 exit) (status/die exit " clj-kondo found one or more lint warnings" )
You can’t perform that action at this time.
0 commit comments