diff --git a/build/remove-private-fields.test.ts b/build/remove-private-fields.test.ts
index b2ec3d729..ecbb2d638 100644
--- a/build/remove-private-fields.test.ts
+++ b/build/remove-private-fields.test.ts
@@ -1,9 +1,9 @@
 /// <reference types="vitest/globals" />
 
-import { removePrivateFields } from './remove-private-fields'
 import fs from 'node:fs/promises'
-import path from 'node:path'
 import os from 'node:os'
+import path from 'node:path'
+import { removePrivateFields } from './remove-private-fields'
 
 describe('removePrivateFields', () => {
   it('Works', async () => {
diff --git a/package.json b/package.json
index 553d5e2a6..801883f8c 100644
--- a/package.json
+++ b/package.json
@@ -20,8 +20,8 @@
     "test:lambda": "vitest --run --config ./runtime-tests/lambda/vitest.config.ts",
     "test:lambda-edge": "vitest --run --config ./runtime-tests/lambda-edge/vitest.config.ts",
     "test:all": "bun run test && bun test:deno && bun test:bun && bun test:fastly && bun test:node && bun test:workerd && bun test:lambda && bun test:lambda-edge",
-    "lint": "eslint src runtime-tests",
-    "lint:fix": "eslint src runtime-tests --fix",
+    "lint": "eslint src runtime-tests build perf-measures",
+    "lint:fix": "eslint src runtime-tests build perf-measures --fix",
     "format": "prettier --check --cache \"src/**/*.{js,ts,tsx}\" \"runtime-tests/**/*.{js,ts,tsx}\" \"build/**/*.{js,ts,tsx}\" \"perf-measures/**/*.{js,ts,tsx}\"",
     "format:fix": "prettier --write --cache --cache-strategy metadata \"src/**/*.{js,ts,tsx}\" \"runtime-tests/**/*.{js,ts,tsx}\" \"build/**/*.{js,ts,tsx}\" \"perf-measures/**/*.{js,ts,tsx}\"",
     "copy:package.cjs.json": "cp ./package.cjs.json ./dist/cjs/package.json && cp ./package.cjs.json ./dist/types/package.json",