github jshint/jshint 2.5.1
JSHint 2.5.1

latest releases: 2.13.6, 2.13.5, 2.13.4...
10 years ago

This is mostly a bug fix release.

One new feature: you can now override any or all globals values by explicitly specifying them in the extending configuration. Examples:

./.jshintrc

{
  "undef": true
}

./test/.jshintrc

{
  "extends": "../.jshintrc",
  "globals": {
    "suite": true,
    "test": true,
    "setup": true,
    "teardown": true,
    "assert": true
   }
}

./test/client/.jshintrc

{
  "extends": "../.jshintrc",
  "browser": true,
  "globals": {
    "define": true
  }
}

./test/server/.jshintrc

{
  "extends": "../.jshintrc",
  "node": true
}

Don't miss a new jshint release

NewReleases is sending notifications on new releases.