We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
× eslint(require-await): Async function has no 'await' expression. ╭─[imports/some/redacted/path/uploadPostMultiImage.ts:3:37] 2 │ 3 │ ╭─▶ export const uploadPostMultiImage = async ( 4 │ │ imageUrls: string[], 5 │ │ owner: string, 6 │ │ accessToken: string 7 │ │ ): Promise<string[]> => { 8 │ │ const results = []; 9 │ │ 10 │ │ for (const url of imageUrls) { 11 │ │ results.push(await uploadPostImage(url, owner, accessToken)); 12 │ │ } 13 │ │ 14 │ │ return results; 15 │ ╰─▶ }; ╰────
The text was updated successfully, but these errors were encountered:
require-await
ForOfStatement
fix(linter/eslint): fix require-await false positives in `ForOfStat…
b188778
…ement`. (#3457) closes #3456
Thanks for reporting this issue❤️
Sorry, something went wrong.
Boshen
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: