1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-02 14:42:52 +01:00

Add and fix stylistic eslint rules (#23735)

* Fix stylistic eslint rules

* Fix eslint issues
This commit is contained in:
Wendelin
2025-01-14 21:00:14 +01:00
committed by GitHub
parent 69a93ddb6e
commit e703750136
582 changed files with 12485 additions and 13451 deletions

View File

@@ -855,7 +855,7 @@ class HaScriptPicker extends SubscribeMixin(LitElement) {
Array.isArray(filter.value) &&
filter.value.length
) {
const categoryItems: Set<string> = new Set();
const categoryItems = new Set<string>();
this.scripts
.filter(
(script) =>
@@ -879,7 +879,7 @@ class HaScriptPicker extends SubscribeMixin(LitElement) {
Array.isArray(filter.value) &&
filter.value.length
) {
const labelItems: Set<string> = new Set();
const labelItems = new Set<string>();
this.scripts
.filter((script) =>
this._entityReg