Skip to content
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

Open
danskarda opened this issue Sep 15, 2015 · 3 comments
Open

"Oneliners" with and without documentation #118

danskarda opened this issue Sep 15, 2015 · 3 comments

Comments

@danskarda
Copy link

I would like to clarify (and maybe enhance) formatting of simple functions.

According to current standard, following example is bad

(defn foobar 
  [x] (-> x foo bar baz))

correct indentation in two lines is

(defn foobar [x] 
  (-> x foo bar baz))

or in three lines with newline:

(defn foobar 
  [x] 
  (-> x foo bar baz))

I see there two inconsistencies, because a) multiarity functions allow similar indentation, so simply killing [x y] arity should lead to correct formatting.

(defn foobar 
  ([x] (-> x foo bar baz))
  ([x y] (-> x foo (bar y) baz)))

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.

(defn foobar
   "Does foo, bar and baz to x"
    [x] (-> x foo bar baz))

I apologize in advance for nitpicking and starting worst code formatting flamewar ever.

@danskarda danskarda changed the title "Oneliners" with documentation "Oneliners" with and without documentation Sep 15, 2015
@arrdem
Copy link
Contributor

arrdem commented Sep 15, 2015

So the easy fix is just to outlaw use of defn and insist that everyone write (def ... (fn* ... )) the indentations and forms of which are well understood and agreed upon. Sorta kidding sorta not.

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 defn seems to be a very common coding style at present and is presented in several of the fine Clojure books. While I agree that your 3rd example is somewhat awkward, it does lend itself to adding a docstring and for that reason is the style which I have forced myself to adopt in recent projects. The single line formatting of the 4th example while tempting is something else which I personally strive to avoid. -> allows us to escape nesting, and my style is to insist that sequential forms in an arrow context each occur on a new line no matter how short the entire form.

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.

@danskarda
Copy link
Author

(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 ;)

@arrdem
Copy link
Contributor

arrdem commented Sep 15, 2015

Heh. Indeed. Eastwood has a checker for exactly such docstring misplacement bugs 😛

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants