Skip to content

Commit e29166f

Browse files
Disable individual lint warnings instead of a global disable (web-scrobbler#2528)
1 parent 553cca1 commit e29166f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/content/connector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ function BaseConnector() {
425425
*
426426
* @param {Object} event Event object
427427
*/
428-
this.onScriptEvent = (event) => { // eslint-disable-line
428+
this.onScriptEvent = (event) => { // eslint-disable-line no-unused-vars
429429
// Do nothing
430430
};
431431

@@ -834,5 +834,5 @@ function BaseConnector() {
834834
this.stateChangedWorkerThrottled = Util.throttle(this.stateChangedWorker, 500);
835835
}
836836

837-
// eslint-disable-next-line
837+
// eslint-disable-next-line no-unused-vars
838838
const Connector = window.Connector || new BaseConnector();

0 commit comments

Comments
 (0)