Fork me on GitHub
#lsp
<
2023-02-13
>
teodorlu12:02:32

clojure-lsp and clj-kondo just saved me a major headache:

(defn fn-with-cache [fn {:keys [cache-key]}]
  (let [cache (atom {})]
    (fn [& args]
      )))
> Unresolved symbol: args > Unresolved symbol: & Thanks!!

🎉 9
ericdallo12:02:52

Kudos to clj-kondo as well!