Fork me on GitHub
#calva
<
2021-09-09
>
dbernal20:09:17

Is there a way to get Calva to format Midje facts better? Currently getting:

(fact "1+1"
      (+ 1 1) => 2)
And I want:
(fact "1+1"
  (+ 1 1) => 2)

Ryan Jerue21:09:37

I believe that calva uses a fork of https://github.com/weavejester/cljfmt. If it can be configured in cljfmt, you can use that configuration in calva. I’m not familiar with what config you would use there, but that’s where the answer would lie

dbernal11:09:07

Thank you! I will take a look