Reputation: 1288
I use the async
macro in Clojurescript
(:require
[cljs.test :refer-macros [async deftest is testing run-tests]]
and Cider wants to indent it like this
(async done
(go
The Cider manual only talks about custom indentation for 1st party macros
https://cider.readthedocs.io/en/latest/indent_spec/ https://cider.readthedocs.io/en/latest/configuration/indentation/
How do I tell Ciderto use {:style/indent 1}
for a 3rd party macro in Clojurescript?
Upvotes: 0
Views: 89