Disallows unused params in function expression and function declaration.
Types: Boolean
Values: true
"disallowUnusedParams": true
function x(test) {
return test;
}
var x = function(test) {
return test;
}
* function x(test) {
}
var x = function(test) {
}