benquarmby / jslintnet

JSLint.NET is a wrapper for Douglas Crockford's JSLint, the JavaScript code quality tool. It can validate JavaScript anywhere .NET runs.
Apache License 2.0
77 stars 11 forks source link

Add support for the new "multivar" option #20

Closed benquarmby closed 8 years ago

benquarmby commented 8 years ago

The latest edition of JSLint warns against combining multiple variable declarations within a single var, let or const statement. It also adds a new "multivar" option to tolerate the above condition:

https://plus.google.com/+DouglasCrockfordEsq/posts/WRpPDPfFgCw

Update JSLint.NET to the latest edition of JSLint. Add support for the "multivar" option both in the JSLintOptions model and and the settings editor UI.