Skip to content

Commit 3b092d0

Browse files
committed
chore: sort imports
1 parent ce1795d commit 3b092d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: benchmark/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// eslint-disable-next-line @eslint-community/eslint-comments/disable-enable-pair -- ignore
22
/* eslint-disable no-console -- ignore */
33
import Benchmark from "benchmark";
4-
import fs from "fs";
5-
import { parseForESLint } from "../src/index.js";
6-
import { parseForESLint as parseOld } from "../node_modules/svelte-eslint-parser/lib/index.js";
4+
import fs from "node:fs";
75
import { fileURLToPath } from "node:url";
6+
import { parseForESLint as parseOld } from "../node_modules/svelte-eslint-parser/lib/index.js";
7+
import { parseForESLint } from "../src/index.js";
88

99
const contents = `${fs.readFileSync(
1010
fileURLToPath(

0 commit comments

Comments
 (0)