Skip to content

Commit

Permalink
Remove eslint remnants
Browse files Browse the repository at this point in the history
After swapping to `biome lint` for performance reasons (although we
should test the performance of eslint as a validation step and if we
exclude some of the more expensive checks like ones that are TypeScript
based) I forgot to remove several mentions of eslint from the code base.
  • Loading branch information
elliotgoodrich committed Mar 20, 2024
1 parent a63c18a commit f09f74f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 23 deletions.
21 changes: 0 additions & 21 deletions .eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion packages/node/lib/file.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const { openSync, writeFileSync } = require("node:fs");
const { resolve, relative, isAbsolute } = require("node:path");

Expand Down
1 change: 0 additions & 1 deletion packages/node/lib/hookRequire.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const Module = require("module");
const { dirname } = require("node:path");
const { logDependency } = require("./file.cjs");
Expand Down

0 comments on commit f09f74f

Please sign in to comment.