Doug Stevens - 2016-06-30

Thanks for producing this excellent tool. Is there a way to configure it to report a missing variable declaration?

`
$("body").on('click', '.foo', function(e){
    value = "foo";
});
`

vs

`
$("body").on('click', '.foo', function(e){
    var value = "foo";
});
`
 

Last edit: Doug Stevens 2016-06-30