kibit
kibit copied to clipboard
There's a function for that!
How can I add a rule to get warnings when I bind the same var more than once? Is this possible with kibit? This is very useful especially for functions.
Originally, there is already one. [kibit-vim](https://github.com/fbeline/kibit-vim) kibit-vim is invoked by kibit leiningen plugin. I wrote a new one. [vim-kibit](https://github.com/humorless/vim-kibit) vim-kibit is invoked by vim-fireplace session.
With this simple mechanical change (done simply with the power of Emacs query-replace-regexp and a few manual tweaks), all the tests are still passing, and it's a starting point to...
What is the status of kibit's support for boot? I haven't seen a plugin that is equivalent to `lein-kibit`, is one necessary? I'm creating a luminus template that uses boot,...
We really like like this tool and have gotten some great feedback from it. here is a function that causes stack overflow (defn crash-me [s] (when-not (empty? s) (filter #{\0...
I ran kibit --replace on my codebase. It made changes to a bunch of files (yay!) but when I diff'ed them in IntelliJ a bunch of the files only had...
I like kibit, however, the stackoverflow below is a bit annoying. - First, that it happens, - secondly, that it is impossible to understand which file created the error, -...
I would love to integrate kibit into my team's build process, sending out an email to the team whenever a build is started and kibit would suggest code changes. However,...
Currently, when kibit automatically makes multi-line changes, it will put the result on one very long line. It would be great if it could do a bit of basic formatting....
The code ```clojure (map #(dec %) [1 2 3]) ``` generates the message: ``` At /Users/rgdelato/joy-of-clojure/src/joy_of_clojure/core.clj:null: Consider using: dec instead of: #(dec %) ``` which displays the line number as...