Fix eslint errors for empty functions/constructors

This commit is contained in:
Bill Thornton 2022-03-01 10:57:48 -05:00
parent 8fefc22669
commit 9067b0e397
19 changed files with 50 additions and 37 deletions

View file

@ -298,7 +298,9 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer';
this.alphaPicker?.updateControls(getQuery(tabContent));
};
this.destroy = function () {};
this.destroy = function () {
// TODO: Remove if unused
};
}
/* eslint-enable indent */