Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
fa93hws committed Oct 10, 2019
1 parent 934862d commit 9ac730e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/tools/eslint-fuzzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe("eslint-fuzzer", function() {
*/
this.timeout(15000); // eslint-disable-line no-invalid-this

const linter = new eslint.Linter({});
const linter = new eslint.Linter();
const coreRules = linter.getRules();
const fixableRuleNames = Array.from(coreRules)
.filter(rulePair => rulePair[1].meta && rulePair[1].meta.fixable)
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const ProgressBar = require("progress");
const fuzz = require("./eslint-fuzzer");
const eslint = require("..");
const linter = new eslint.Linter({});
const linter = new eslint.Linter();

//------------------------------------------------------------------------------
// Helpers
Expand Down

0 comments on commit 9ac730e

Please sign in to comment.