James Reeves
James Reeves
I actually don't mind the idea of splitting up long lines. The Clojure style guide recommends that lines don't exceed 80 characters, and that's my own preference as well. It...
cljfmt doesn't currently support that type of indentation.
Standard Clojure style allows for [both forms](https://github.com/bbatsov/clojure-style-guide#oneline-short-fn). cljfmt doesn't have a way of enforcing newlines currently.
Not currently, but I'd accept a PR to that effect.
I don't mind having this as an option, but I don't think it should be the default.
This might be better split into two issues. The first, removing parentheses around functions with one arity, seems pretty specific to functions alone. We could add that in as its...
I suspect the indentation of clojure-mode in this particular case is unintentional. All other Clojure forms are indented either a fixed 2 spaces, or indented to align with the previous...
I'd write it like that as well in this particular case, but sometimes the first two arguments are too long to fit on one line, or else the user has...
The problem comes with every form that has "block" indentation of some kind. For example, how would one indent: ``` clojure (defrecord Foo [x] Bar (bar [_] x)) ``` cljfmt...
Has the author indicated that this library is deprecated?