JSHint 1.1.0 is out! This release contains important bug fixes for 1.0.0 and a couple of new features.
phantom
.
(#814).jshintrc
file. (#850)gcl
to make JSHint style checks compatible with Google
Closure Linter.
(#812 and
#811).jshintrc
file that mirrors defaults from the website.return "=";
would produce a false positive
warning. (#878)Expands on the configurability of unused
. This option now accepts the
following values:
false
: no checking is done.true
: checks all variables and parameters, unless unused parameter is
followed by a used one:
function test(err, val) { return val; }
"vars"
: checks only variables but not function parameters."strict"
: checks all variables and all function parameters.
(#778)\0
in strings would produce a false positive warning.unused
would generate false positive warnings on ES3
future reserved words in the ES5 environment.// jshint
.
(#881)I would also like to use this moment to say hi to my friends and family, and remind everyone that we're running a fundraising campaign on BountySource. All money donated will be used to pay contributors for fixing bugs and shipping new features. So if you like JSHint donate today. And if you hate JSHint donate tomorrow.