Releases: play-co/jsiohint
Releases · play-co/jsiohint
v2.8.0-beta
This includes all jshint commits through July 11th, 2015. Specifically, it has all of jshint v2.8.0 in it, plus the latest commits on top (so we'll postfix this release with -beta).
On the jsio side, jshint with the jsio option enabled will now parse commas in statements like:
import avocado as blueberry, cucumber as date;
from eggplant import grapes, guavas;
jsiohint
Now 100% compatible with v2.6.3 of jshint! Can replace jshint with no changes (code by default is identical to https://github.com/jshint/jshint).
Adds an additional option jsio. Set options.jsio = true before running for additional parsing of jsio import statements, or consider adding the following to your .jshintrc.
{
...
"jsio": true,
"globals": {
"Class": false,
"merge": false,
"bind": false
}
}
Additionally, set undef or unused to true to find forgotten or unused imports.