Skip to content

Commit

Permalink
Support async formatters (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
toddjordan committed May 9, 2023
1 parent 63a9fe7 commit 89eb056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/eslint.js
Expand Up @@ -49,7 +49,7 @@ module.exports = grunt => {
results = ESLint.getErrorResults(results);
}

const output = formatter.format(results);
const output = await formatter.format(results);

if (outputFile) {
grunt.file.write(outputFile, output);
Expand Down

0 comments on commit 89eb056

Please sign in to comment.