Skip to content

Releases: play-co/jsiohint

v2.8.0-beta

16 Jul 03:26
@mgh mgh

Choose a tag to compare

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

24 Mar 09:39
@mgh mgh

Choose a tag to compare

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.