jscritic
jscritic copied to clipboard
Function parameters as unused variables
in the following example, variable 'a' shouldn't be marked as unused:
bar.foo(function (a, callback){
callback();
});
Yes, technically it's unused, but there's no way it can be removed.