Open gfredericks opened 9 years ago
I ran this on my rather large project and got 7 warnings, all of them from leiningen code.
When I looked closer at the lein dynalint code I'm pretty sure it just starts the linter inside the leiningen jvm and then runs the tests without it.
lein dynalint
I'm thinking maybe it should add some code to the :injections key in the project map before passing that to the leiningen.test/test function.
:injections
leiningen.test/test
Looks like you'd also have to come up with a way to grab the dynalint.lint/warning-history as well.
dynalint.lint/warning-history
I ran this on my rather large project and got 7 warnings, all of them from leiningen code.
When I looked closer at the
lein dynalint
code I'm pretty sure it just starts the linter inside the leiningen jvm and then runs the tests without it.I'm thinking maybe it should add some code to the
:injections
key in the project map before passing that to theleiningen.test/test
function.