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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user