You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a similar issue fixed before where the module-getter rule was triggered when a dependency has a config method, and now I stumbled upon the same thing, but with a run method.
Example:
angular.module('app',[]).controller('ctrl',function(ReportService){ReportService.run();// module-getter rule is triggered here});
The text was updated successfully, but these errors were encountered:
There was a similar issue fixed before where the
module-getter
rule was triggered when a dependency has aconfig
method, and now I stumbled upon the same thing, but with arun
method.Example:
The text was updated successfully, but these errors were encountered: