Skip to content

Commit d0d958c

Browse files
chore: run prettier
1 parent 124fa2f commit d0d958c

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/DocsParser.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ export class DocsParser {
123123
const parsed: (
124124
| ModuleDocumentationContainer
125125
| ClassDocumentationContainer
126-
| ElementDocumentationContainer)[] = [];
126+
| ElementDocumentationContainer
127+
)[] = [];
127128
const contents = await fs.readFile(filePath, 'utf8');
128129
const md = new MarkdownIt();
129130

src/ParsedDocumentation.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ export declare type DetailedType = (
3333
| DetailedStringType
3434
| {
3535
type: string;
36-
}) & {
36+
}
37+
) & {
3738
innerTypes?: TypeInformation[];
3839
};
3940
export declare type TypeInformation = {
@@ -140,7 +141,8 @@ export declare type ParsedDocumentationResult = (
140141
| ModuleDocumentationContainer
141142
| ClassDocumentationContainer
142143
| StructureDocumentationContainer
143-
| ElementDocumentationContainer)[];
144+
| ElementDocumentationContainer
145+
)[];
144146

145147
export class ParsedDocumentation {
146148
private repr: ParsedDocumentationResult = [];
@@ -153,7 +155,8 @@ export class ParsedDocumentation {
153155
...apiContainers: (
154156
| ModuleDocumentationContainer
155157
| ClassDocumentationContainer
156-
| ElementDocumentationContainer)[]
158+
| ElementDocumentationContainer
159+
)[]
157160
) {
158161
this.repr.push(...apiContainers);
159162
}

src/block-parsers.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,7 @@ export const _headingToMethodBlock = (
111111
for (let i = 0; i < parameters.length; i++) {
112112
expect(parameters[i].required).to.equal(
113113
!guessedParams[i].optional,
114-
`the optionalality of a paramater in the signature should match the documented optionality in the parameter description: "${methodString}${methodSignature}", while parsing parameter: "${
115-
parameters[i].name
116-
}"`,
114+
`the optionalality of a paramater in the signature should match the documented optionality in the parameter description: "${methodString}${methodSignature}", while parsing parameter: "${parameters[i].name}"`,
117115
);
118116
}
119117
}

0 commit comments

Comments
 (0)