WebStorm:显示未使用的AngularJS依赖项

时间:2019-05-14 13:03:10

标签: angularjs webstorm

假设我有以下AngularJS控制器:

function MyController($scope, unusedService, myService) {
    $scope.something = function() {};
    myService.doSomething();
}

如何使WebStorm将unusedService显示为未使用的参数,因为当前没有显示。

1 个答案:

答案 0 :(得分:0)

设置|编辑器检验| JavaScript |一般未使用的本地符号检查设置,将忽略未使用的参数:设置为

enter image description here