Skip to content

Commit

Permalink
I don't know what I'm doing
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante authored Oct 12, 2024
1 parent 1877df6 commit cfd6c38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const lintText = async (string, options) => {

const lintFiles = async (patterns, options) => {
const files = await globFiles(patterns, options);
const {isQuiet} = options;

const groups = await getOptionGroups(files, options);

Expand Down Expand Up @@ -104,7 +105,7 @@ const lintFiles = async (patterns, options) => {

const rulesMeta = eslint.getRulesMetaForResults(report);

return processReport(report, {isQuiet: options.isQuiet, rulesMeta});
return processReport(report, {isQuiet, rulesMeta});
}));

const report = mergeReports(reports);
Expand Down

0 comments on commit cfd6c38

Please sign in to comment.