Greg Coonrod

Results 2 comments of Greg Coonrod

I am currently seeing this issue as well with Gradle 2.0 and js plugin version 1.12.1

I got around this issue by appending `tasks.jshint` to the options in the jshint closure. ``` groovy jshint { tasks.jshint.source = javascript.source.dev.js.files tasks.jshint.dest = file ("${buildDir}/jshint.out") tasks.jshint.outputToStdOut = true tasks.jshint.reporter...