-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
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
"Oneliners" with and without documentation #118
Comments
So the easy fix is just to outlaw use of I think that the style choice in the first two is clear as you seem to agree. For short argument vectors same line as the I have some sympathy for the 5th snippet, however I would again prefer a newline for each of the symbol, the docstring, the args and the body. |
(defn foobar [x]
(do something usefull)) probably comes from our Emacs / Common Lisp habits. Many times it seduced me to write. (defn foobar [x]
"Does something useful"
(do something usefull)) Which is incorrect, because it is not documentation, but ignored expression. But lets get back to some more intellectually challenging problems than indendation ;) |
Heh. Indeed. Eastwood has a checker for exactly such docstring misplacement bugs 😛 |
I would like to clarify (and maybe enhance) formatting of simple functions.
According to current standard, following example is bad
correct indentation in two lines is
or in three lines with newline:
I see there two inconsistencies, because a) multiarity functions allow similar indentation, so simply killing [x y] arity should lead to correct formatting.
and b) neither two liner or three-liner play nice with docstring. There I would expect to see short version in three lines. Again, removing docstring should lead to correct formatting.
I apologize in advance for nitpicking and starting worst code formatting flamewar ever.
The text was updated successfully, but these errors were encountered: