From 3759c8d46a9dd1b75a3bf84eb3e3a02878033e1c Mon Sep 17 00:00:00 2001 From: lbrdnk <lbrdnk@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:54:31 +0200 Subject: [PATCH] Add :legacy/merge-indents? to .cljfmt.edn (#47345) --- .cljfmt.edn | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.cljfmt.edn b/.cljfmt.edn index 17cf420dc13..fe256a90326 100644 --- a/.cljfmt.edn +++ b/.cljfmt.edn @@ -1,5 +1,9 @@ ;; Cljfmt config. See https://github.com/weavejester/cljfmt#formatting-options -{:sort-ns-references? +{;; Following option is required for cljfmt to run correctly in vscode/calva. + ;; Source: https://calva.io/formatting/#indentation-rules + :legacy/merge-indents? true + + :sort-ns-references? true :function-arguments-indentation -- GitLab