Skip to content

jsiohint

Choose a tag to compare

@mgh mgh released this 24 Mar 09:39
· 120 commits to master since this release

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.