Skip to content

Commit bbb31c3

Browse files
committed
chore: fix prettier
1 parent 655da1e commit bbb31c3

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

File renamed without changes.

src/commands/force/source/read.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ export class SourceReadCommand extends SfCommand<any> {
3939
}),
4040
"chunk-size": Flags.integer({
4141
summary: "number of components to be read per API call",
42-
description: "The limit for readMetadata() is 10. For CustomMetadata and CustomApplication only, the limit is 200.",
42+
description:
43+
"The limit for readMetadata() is 10. For CustomMetadata and CustomApplication only, the limit is 200.",
4344
max: 10,
44-
default: 10
45-
})
45+
default: 10,
46+
}),
4647
};
4748

4849
public static readonly requiresProject = true;

src/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { Builder } from "xml2js";
22

3-
export function parseCommaSeparatedValues(commaSeparatedMetadataComponentNames) {
3+
export function parseCommaSeparatedValues(
4+
commaSeparatedMetadataComponentNames
5+
) {
46
if (!commaSeparatedMetadataComponentNames) {
57
return [];
68
}

0 commit comments

Comments
 (0)