mirror of https://github.com/portainer/portainer
refactor(webpack): remove empty controllers
parent
86bb816cf1
commit
2ce830eb16
|
@ -70,7 +70,7 @@ rules:
|
|||
# no-case-declarations: error
|
||||
# no-div-regex: error
|
||||
# no-else-return: off
|
||||
# no-empty-function: off
|
||||
no-empty-function: warn
|
||||
# no-empty-pattern: error
|
||||
# no-eq-null: error
|
||||
# no-eval: error
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
import angular from 'angular';
|
||||
|
||||
angular
|
||||
.module('portainer.agent')
|
||||
.controller('FilesDatatableController', [
|
||||
function FilesDatatableController() {}
|
||||
]);
|
|
@ -1,5 +0,0 @@
|
|||
import angular from 'angular';
|
||||
|
||||
angular
|
||||
.module('portainer.docker')
|
||||
.controller('HostOverviewController', [function HostOverviewController() {}]);
|
|
@ -1,7 +0,0 @@
|
|||
import angular from 'angular';
|
||||
|
||||
angular
|
||||
.module('portainer.docker')
|
||||
.controller('EngineDetailsPanelController', [
|
||||
function EngineDetailsPanelController() {}
|
||||
]);
|
|
@ -1,6 +0,0 @@
|
|||
import angular from 'angular';
|
||||
|
||||
angular.module('portainer.docker')
|
||||
.controller('HostDetailsPanelController', [function HostDetailsPanelController(){
|
||||
|
||||
}]);
|
Loading…
Reference in New Issue