Skip to content

Commit 0a93942

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent 37286ee commit 0a93942

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/app-types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Provider } from "@firebase/component";
1+
import { Provider } from '@firebase/component';
22

33
/**
44
* @license
@@ -102,4 +102,4 @@ export interface FirebaseNamespace {
102102

103103
// The current SDK version.
104104
SDK_VERSION: string;
105-
}
105+
}

packages/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const initializeApp = firebaseNamespace.initializeApp;
4444
// TODO: This disable can be removed and the 'ignoreRestArgs' option added to
4545
// the no-explicit-any rule when ESlint releases it.
4646
// eslint-disable-next-line @typescript-eslint/no-explicit-any
47-
firebaseNamespace.initializeApp = function (...args: any) {
47+
firebaseNamespace.initializeApp = function(...args: any) {
4848
// Environment check before initializing app
4949
// Do the check in initializeApp, so people have a chance to disable it by setting logLevel
5050
// in @firebase/logger

packages/app/src/firebaseNamespaceCore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export function createFirebaseNamespaceCore(
213213
// TODO: The eslint disable can be removed and the 'ignoreRestArgs'
214214
// option added to the no-explicit-any rule when ESlint releases it.
215215
// eslint-disable-next-line @typescript-eslint/no-explicit-any
216-
function (...args: any) {
216+
function(...args: any) {
217217
const serviceFxn = this._getService.bind(this, componentName);
218218
return serviceFxn.apply(
219219
this,

packages/app/test/firebaseApp.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function firebaseAppTests(
315315
}
316316

317317
class TestService implements FirebaseService {
318-
constructor(private app_: FirebaseApp, public instanceIdentifier?: string) { }
318+
constructor(private app_: FirebaseApp, public instanceIdentifier?: string) {}
319319

320320
// TODO(koss): Shouldn't this just be an added method on
321321
// the service instance?
@@ -342,4 +342,4 @@ function createTestComponent(
342342
);
343343
component.setMultipleInstances(multiInstances);
344344
return component;
345-
}
345+
}

0 commit comments

Comments
 (0)