Jonas Enlund
Jonas Enlund
Not well documented. Basically the cljs libraries that are found in project.clj: - [core.logic](https://github.com/clojure/core.logic) - [core.match](https://github.com/clojure/core.match) - [core.async](https://github.com/clojure/core.async) - [domina](https://github.com/levand/domina) - [hiccups](https://github.com/teropa/hiccups) and maybe a few others... I can add...
Could you update the example in the README as well?
@dezconnect I ran a few tests and it seems like a file with a "top level" array doesn't work properly: ``` users[]=nike users[]=joe ``` evaluates to ``` {"users[]" "joe"} ```...
This looks interesting. Could you point me to some resource which either discusses these hierarchies or some ini-files floating around on the internet using them?
@ljos Your suggestion would turn ``` (let [x (f y)] (if x (g x) (h x))) ``` into ``` (if (f y) (g x) (h x)) ``` while the original...
I just tried running kibit on knockbox on my machine and it all worked well. The reader syntax for BigInt was added in Clojure 1.3 and kibit will (currently) use...
It is [well documented](https://github.com/technomancy/leiningen/blob/preview/doc/PLUGINS.md) how to execute a task within the project itself. I will look into this over the weekend.
Is this rule causing problems? Are you getting pull requests from users who have run kibit on your project and you don't agree with the changes (I've seen this happen)?...
The only custom rule we're using currently is ``` "new-cap": [2, {"capIsNewExceptions": ["Immutable.Map", "Immutable.Set", "Immutable.List"]}] ```
You're right that it's very important to consider the clause order when writing real world queries. However, I don't want to be bogged down in perfomance discussions this early in...