Skip to content

Commit da35719

Browse files
committed
fix: lint
1 parent 7f4dfd5 commit da35719

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

packages/cloud_firestore/cloud_firestore_web/lib/src/interop/firestore.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,9 @@ class CollectionReference<T extends firestore_interop.CollectionReferenceJsImpl>
719719
return _expando[jsObject] ??= CollectionReference._fromJsObject(jsObject);
720720
}
721721

722-
factory CollectionReference(firestore_interop.CollectionReferenceJsImpl jsObject) =>
723-
CollectionReference._fromJsObject(jsObject);
722+
factory CollectionReference(
723+
firestore_interop.CollectionReferenceJsImpl jsObject) =>
724+
CollectionReference._fromJsObject(jsObject);
724725

725726
CollectionReference._fromJsObject(
726727
firestore_interop.CollectionReferenceJsImpl jsObject)

packages/cloud_firestore/cloud_firestore_web/lib/src/interop/firestore_interop.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,6 @@ extension type DocumentChangeJsImpl._(JSObject _) implements JSObject {
472472
@staticInterop
473473
external DocumentReferenceJsImpl get DocumentReferenceJsConstructor;
474474

475-
476475
extension type DocumentReferenceJsImpl._(JSObject _) implements JSObject {
477476
external FirestoreJsImpl get firestore;
478477
external JSString get id;
@@ -758,7 +757,7 @@ extension type PersistentMultipleTabManager._(JSObject _) implements JSObject {
758757
}
759758

760759
/// A garbage collector deletes documents whenever they are not part of any active queries, and have no local mutations attached to them.
761-
///
760+
///
762761
extension type MemoryEagerGarbageCollector._(JSObject _) implements JSObject {
763762
external JSString get kind;
764763
}
@@ -829,7 +828,8 @@ extension PersistentCacheSettingsExtension on PersistentCacheSettings {
829828
/// An settings object to configure an PersistentLocalCache instance.
830829
///
831830
/// See: <https://firebase.google.com/docs/reference/js/firestore_.persistentsingletabmanagersettings>.
832-
extension type PersistentSingleTabManagerSettings._(JSObject _) implements JSObject {
831+
extension type PersistentSingleTabManagerSettings._(JSObject _)
832+
implements JSObject {
833833
/// Whether to force-enable persistent (IndexedDB) cache for the client.
834834
/// This cannot be used with multi-tab synchronization and is primarily
835835
/// intended for use with Web Workers.

0 commit comments

Comments
 (0)