vemv

Results 256 issues of vemv

I found a quite extreme edge case, by which `set! warn-on-reflection false`, while would be overriden cleanly when analyzing such a ns _directly_, would have effect when that ns is...

See https://github.com/jonase/eastwood/commit/a35e286f0066173a614bb5d5d451568669988265

From what I learned from https://ask.clojure.org/index.php/10716/is-tag-metadata-that-represents-function-calls-useful?show=10721#c10721 , the https://github.com/jonase/eastwood/commit/c0358049236932b7c4bd682c9467ff4d4023118f commit is kind of wrong because while the targeted `extend-protocol` call does work as intended, the :tag metadata it will be...

var-info.edn represents a closed set of data. So one cannot inform Eastwood of one's own side-effectful functions, which in turns can result in false positives for `:unused-ret-vals`. I foresee a...

var-info.edn: has various TBDs. In addition, there's https://github.com/jonase/eastwood/issues/236#issuecomment-336291922 * Review the underlying "DSL" * how is it used? * Address each item.

Every now and then I get the following error, nondeterministically: ``` java.lang.Exception: No namespace: camel-snake-kebab.core, compiling:(cljs_react_test/simulate.clj:1:1) ``` Perhaps something could be required in a better way? Otherwise what could it...

Hello there, Completions such as `clojure.core$unchecked_remainder_int` or the more extreme `ring.adapter.jetty/ring.adapter.jetty.proxy$org.eclipse.jetty.server.handler.AbstractHandler$0` can be pretty noisy both in terms of number and length, especially when leveraging popup-based completions such as ac-nrepl....

Implements :while (my whim), :when-some (#9). Also adds a modest test suite and fixes an indentation that seemed off. Hope it's all good! If yes, the next step would be...

Hey there, great macro! I find there's a 'usability' issue though: * I don't want to `refer-clojure`, it's ugly and I have to type it (potentially many times) * I...

## Context I run a test suite which ultimately uses HikariCP repeatedly, within the same JVM. This requires threads and other resources not to leak after each test suite run...