73rhodes / Sublime-JSLint

JSLint for Sublime Text 2 and 3.
80 stars 14 forks source link

Feature Request : togglable move_var checks #9

Closed alextam closed 11 years ago

alextam commented 11 years ago

Is it possible to have move_var variable as option in lint as it will allows us to continue using for (var i = 0;i < max;i++)

darrenderidder commented 11 years ago

You can set any of jslint's options under preference -> package settings -> jslint -> advanced built settings. See http://www.jslint.com/lint.html#options for a list of options in JSLint. There's no move_var option (that's just a label for an error condition), but you can use the vars: true option to permit many variable declarations per function.