TIL you can use aliases in keywords in quoted forms:
(require '[clojure.string :as s]) '{a ::s/foo}
There was a bug in clj-kondo with this, where namespace s was considered unused.
Luckily babashka does it right ๐
$ bb -e "(require '[clojure.string :as s]) '{a ::s/foo}"
{a :clojure.string/foo}
Interesting. I guess thatโs because it is a reader operation to handle auto-resolves?
yes