-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
Do we have a rule that checks if all the dependencies required are actually utilized within the file or not?
For instance, for a file with such contents
define([
"underscore",
], function(
_,
) {
console.log("hi");
});It would say something like 'warning: you have required underscore but aren't actually using it.'
Reactions are currently unavailable