Daniel Compton
Daniel Compton
It would be good if this library handled non-zero exit codes when running configure. Also, it would be good if you streamed STDERR to STDOUT as well, as any errors...
Is this general approach applicable to ClojureScript as well? That would be quite useful, although we rely on a large suite of supporting CLJS tooling, so I'm not sure how...
When you're installing a large package like Karma, it can take a while for it to install. lein-npm currently just sits there and it's not obvious what's happening. It could...
On https://square.github.io/intro-to-d3/data-binding/ there is a code section ``` var y = d3.scaleOrdinal() .rangeRoundBands([0, 75]) .domain(sales.map(function(d, i) { return d.product; })); ``` It looks like `rangeRoundBands` was removed in v4?
Do we want to reorder ns forms to follow something like Stuart Sierra’s [style guide]( https://stuartsierra.com/2016/clojure-how-to-ns.html)? (I’m really in favour of this personally). If we do want to reorder ns...
How many empty lines should go between forms? A few options here: * Don't touch this at all, leave any newlines between forms alone * One line between each form...
How should we deal with comments? Is there a difference between `;` and `;;`? Reading discussions of other people building source code formatters, comments came up many times as a...
Similar to #7 on formatting maps, how should let bindings be formatted? Should all of the `init-form`s (right hand side) be aligned, or have a ragged alignment? ```clj (let [a...
There are a few places where Clojure programs can accumulate trailing whitespace. In the listings below `|` denotes the end of the line. **At the ends of lines after source...
Should map values be aligned, or should they have a single space between keys and values? E.g.: ```clj {:a 1 :xyz 2} ;; or {:a 1 :xyz 2} ``` Do...