From 00b30c1a47e0f54ac2f9d25b0f7b8fa7e5bf459f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 19 Jun 2025 01:25:00 +0200 Subject: [PATCH] cleanup: Remove unused eslint-disable directives The 'camelcase' rule only applies to variables and properties, not to function names are getter/setter. Part-of: (cherry picked from commit 9e11ec9940263e217d575454c92686f2065eeefd) --- extensions/window-list/extension.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index 93fcc2b3..b7354c34 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -432,12 +432,10 @@ class BaseButton extends DashItemContainer { return this._button.has_style_class_name('focused'); } - // eslint-disable-next-line camelcase get ignore_workspace() { return this._ignoreWorkspace; } - // eslint-disable-next-line camelcase set ignore_workspace(ignore) { if (this._ignoreWorkspace === ignore) return;