We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i'm using v0.14.0. it seems that standard-clj corrects
v0.14.0
(+ (+ 3 5) (- 4 5))
or
to
where i would expect
The text was updated successfully, but these errors were encountered:
This is a question of of "Rule 3" alignment.
If you want the nested form (- 4 5) to be vertically aligned under (+ 3 5), then provide the following to Standard Clojure Style:
(- 4 5)
(+ 3 5)
Otherwise you will get Fixed Indentation (ie: two spaces) as in your examples.
Sorry, something went wrong.
No branches or pull requests
i'm using
v0.14.0
. it seems that standard-clj correctsor
to
where i would expect
The text was updated successfully, but these errors were encountered: