Skip to content

Commit

Permalink
chore: fix generate scripts (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Nov 15, 2022
1 parent a38dc5d commit 4a989eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/generate-configs.js
Expand Up @@ -29,4 +29,4 @@ ${fs
)

const linter = new ESLint({ fix: true })
linter.lintFiles([targetFile]).then(([result]) => ESLint.outputFixes(result))
linter.lintFiles([targetFile]).then((results) => ESLint.outputFixes(results))
2 changes: 1 addition & 1 deletion scripts/generate-rules.js
Expand Up @@ -35,4 +35,4 @@ ${fs
)

const linter = new ESLint({ fix: true })
linter.lintFiles([targetFile]).then(([result]) => ESLint.outputFixes(result))
linter.lintFiles([targetFile]).then((results) => ESLint.outputFixes(results))

0 comments on commit 4a989eb

Please sign in to comment.