Reid D McKenzie
Reid D McKenzie
Hum... Can you clarify exactly what your issue is here? Would this be OK? I've seen this done before to allow comments textually on fields. ``` clojure (def my-collection [x...
Hum. Agreed, the Clojure style seems to have opens on the same line as the first term, and closes on the same line as the last term. For that reason...
So actually there is a legitimate case for the "trailing delimiter" style. Consider the following edit: Initially: ``` clojure {:foo :bar} ``` After: ``` clojure {:foo :bar :baz :qux} ```...
There shouldn't be. #55 if I understand it is a name and maybe even type conflict between Clojure emitted vars. #72 is a question of whether a namespace is being...
I've had a WIP on this - #194 - for some time now. I don't have time to finish it at present, but patches would be more than welcome if...
Dupe of #191
Hey @AhmedAzzabi, if I understand your question correctly, you're asking if Kibit can detect `def f` "after" `def f`? I think the short answer is not at present, although you...
Hummmm I'll dig into why reader conditionals blow up. In general because they're reader magic, I don't expect them to be particularly well supported by kibit because any replacements crossing...
My $0.02 on this is that kibit is not a formatter, it's a simplifier / linter. The new `--replace` option is a very alpha feature for supporting automatic simplification. Other...