You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...but that's contradicted by other examples in the guide, which use the common two-space indentation for if. Technically the rule might not cover if since it's a special form and not a macro, but there's also if-let and if-some and it would be very weird IMO to indent them differently. It would be good to mention this explicitly, even if just to call out if and friends as exceptions.
(I searched for existing issues covering this, but the closest I found was #87.)
The text was updated successfully, but these errors were encountered:
All macros/special forms that take a body parameter are indented differently, so I don't think there's anything special about the handling of if, if-let and so on. Can you elaborate on what exactly is different for them from your perspective compared to other macros operating on a bunch of forms?
By my reading of https://github.com/bbatsov/clojure-style-guide#vertically-align-fn-args, we should indent
if
like so:...but that's contradicted by other examples in the guide, which use the common two-space indentation for
if
. Technically the rule might not coverif
since it's a special form and not a macro, but there's alsoif-let
andif-some
and it would be very weird IMO to indent them differently. It would be good to mention this explicitly, even if just to call outif
and friends as exceptions.(I searched for existing issues covering this, but the closest I found was #87.)
The text was updated successfully, but these errors were encountered: