sbt-jshint
sbt-jshint copied to clipboard
Allows jslint to be used from within sbt. Builds on com.typesafe:webdriver in order to execute jslint.js along with the scripts to verify
It seems that file `.jshintignore` is not supported. At least I cannot get such a file working in my Play project. Furthermore, while `.jshintrc` is [explicitly referenced in the source...
Hi, I have a non-asset directory to be linted. My project is based on Play 2.3.2 and the directory structure is like this: ``` - app - assets - js...
I had a typo in my configuration file (an extra comma). This resulted in the following exception ``` com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: undefined:7 } ^ SyntaxError: Unexpected token } at Object.parse (native) at...
Hi, how can I use multiple .jshintrc files per project? jshint supports it: "In case of .jshintrc, JSHint will start looking for this file in the same directory as the...
This would be a for a react project.
For files that I can't load from WebJars, I typically commit them to my `assets/javascripts/vendor` directory. Not all of them will pass jshint's tests, so I'd like to exclude them...
If I have a multi-module build (ex. https://github.com/adrianhurt/play-multidomain-seed), the sub-projects do not use the .jshintrc in the project root folder.
I need to disable some of the warnings (which for some reason seem to be interpreted as errors by Play?!), but they don't have explicit names. The technique for doing...