Skip to content

Commit ec74af8

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent cc590d0 commit ec74af8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

packages/firestore/src/platform_node/load_protos.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ export function loadProtos(): grpc.GrpcObject {
3535
// Beware that converting fields to camel case (the default behaviour with
3636
// protoLoader) does not convert the tag fields in oneof groups (!!!). This
3737
// will likely be fixed when we upgrade to protobufjs 6.x
38-
const packageDefinition = protoLoader.loadSync(
39-
firestoreProtoFile,
40-
{ longs: String, enums: String, defaults: true, oneofs: true, includeDirs: [root] });
38+
const packageDefinition = protoLoader.loadSync(firestoreProtoFile, {
39+
longs: String,
40+
enums: String,
41+
defaults: true,
42+
oneofs: true,
43+
includeDirs: [root]
44+
});
4145

4246
return grpc.loadPackageDefinition(packageDefinition);
4347
}

0 commit comments

Comments
 (0)