Andy Fingerhut

Results 266 issues of Andy Fingerhut

By "work" I mean that the command "lein with-profile +1.9 test" doesn't throw exceptions, and the tests pass. cheshire depends upon test.generative 0.1.4, which uses an old version of tools.namespace...

I found one manually that Eastwood did not catch. It is the get-edge call on this line of version 0.6.0 of the code: https://github.com/Engelberg/ubergraph/blob/v0.6.0/src/ubergraph/core.clj#L188 I haven't yet investigated why it...

Excerpts from a conversation on Clojurians Slack channel #clojure-dev on 2018-Sep-05: "I had an issue where I had two functions in a file, `replace-_` and `replace_-`. This worked in dev,...

Example that would be nice to get a warning for, from @thheller on clojure-dev Slack channel: ``` (defn x [{:keys [foo]} foo] foo) => #'user/x (x {} 1) => nil...

False positive/noise :unused-locals warnings found in cases/testcases/testtest.clj also some similar ones in cases/testcases/suspicious.clj Found by enabling :unused-locals linter in linters_test.clj for namespace testcases.testtest. The last 2 are good warnings. For...

See this recent discussion on the topic, for example: https://groups.google.com/forum/#!topic/clojure/CwZHu1Eszbk I would have to look at the preliminary results of such a new linter on a bunch of Clojure projects...

In at least some cases like this, I believe that the existence of the .clj file would cause the .cljc file to be ignored. A warning about this might be...

A reasonably common mistake in Clojure code is to use a lazy construct like map or for inside of a binding or with-\* form, in return position, and then have...

new linter

See this issue and its commit for an example of code that has such fragility: https://github.com/ngrunwald/ring-middleware-format/pull/37

new linter

http://dev.clojure.org/jira/browse/CLJ-1661

enhancement