We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f413a commit 63deaaeCopy full SHA for 63deaae
src/parsers/markdown.mjs
@@ -52,9 +52,7 @@ const createParser = linter => {
52
const parseApiDocs = async apiDocs => {
53
// We do a Promise.all, to ensure that each API doc is resolved asynchronously
54
// but all need to be resolved first before we return the result to the caller
55
- const resolvedApiDocEntries = await Promise.all(apiDocs.map(parseApiDoc));
56
-
57
- return resolvedApiDocEntries;
+ return Promise.all(apiDocs.map(parseApiDoc));
58
};
59
60
return { parseApiDocs, parseApiDoc };
0 commit comments