I'm currently using VSCode, and I'm trying to auto-format clojure files. I have Calva installed.
I've typed the following code into my .clj
file:
(let [a :b]
(str "foo" "bar" "baz"
"a" a))
I'm expecting it to auto format when I save, but it's not working for some reason. Any idea how to make it work?
Thanks!