Skip to content

Commit

Permalink
test & ci: bump deps (#276)
Browse files Browse the repository at this point in the history
Of note:
- Can't resist trying a new release of clj-kondo!
Enabled new linter: `:redudant-str-call`.
  • Loading branch information
lread authored May 22, 2024
1 parent 02bfd2f commit 8fa0a5c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
3 changes: 2 additions & 1 deletion .clj-kondo/config.edn
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
rewrite-clj.zip.subedit/edit->> clojure.core/->>
rewrite-clj.custom-zipper.switchable/defn-switchable clojure.core/defn}
:linters
{:redundant-fn-wrapper {:level :warning}
{:redundant-str-call {:level :warning}
:redundant-fn-wrapper {:level :warning}
:unused-value {:level :warning}
:aliased-namespace-symbol {:level :warning}
:unknown-require-option {:level :off} ;; overcome a wee bug in 2020-10-05 version
Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
;;
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
;; so we do not pick up our own clj-kondo config exports
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.03.13"}}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.05.22"}}
:override-deps {org.clojure/clojure {:mvn/version "1.11.3"}}
:main-opts ["-m" "clj-kondo.main"]}

Expand Down Expand Up @@ -68,7 +68,7 @@
:extra-paths ["target/test-doc-blocks/test"]}

;; kaocha for testing clojure versions>= v1.9
:kaocha {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}
:kaocha {:extra-deps {lambdaisland/kaocha {:mvn/version "1.90.1383"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}}
:main-opts ["-m" "kaocha.runner"]}
Expand Down Expand Up @@ -136,7 +136,7 @@
;;
;; Deployment
;;
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.1"}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
:extra-paths ["src" "build"]
:ns-default build}

Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"karma-cljs-test": "^0.1.0",
"karma-junit-reporter": "^2.0.0",
"karma-spec-reporter": "^0.0.36",
"shadow-cljs": "^2.28.4"
"shadow-cljs": "^2.28.7"
}
}

0 comments on commit 8fa0a5c

Please sign in to comment.