Skip to content

Commit 2df6b21

Browse files
committed
add eslint suppress
1 parent ff5b78e commit 2df6b21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/component/src/provider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ export class Provider<T extends Name> {
176176
// eslint-disable-next-line @typescript-eslint/no-explicit-any
177177
.map(service => (service as any).INTERNAL!.delete()),
178178
...services
179-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
180179
.filter(
181180
service =>
182181
'delete' in service &&
183182
this.component &&
184183
// TODO: remove !== 'app' when modular SDKs become official
185184
// People call app.delete() to trigger provider.delete() for all registered components, so
186185
// we don't call delete() on legacy FirebaseApp to avoid getting into a loop.
186+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
187187
(this.component.name as any) !== 'app'
188188
) // modular services
189189
// eslint-disable-next-line @typescript-eslint/no-explicit-any

0 commit comments

Comments
 (0)