diff --git a/biome.jsonc b/biome.jsonc index 3c9ca468c27..817c1d8645a 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -48,7 +48,6 @@ "noExtraBooleanCast": "off" }, "correctness": { - "noEmptyPattern": "off", "noConstructorReturn": "off", "noSwitchDeclarations": "off", "noInvalidUseBeforeDeclaration": "off", diff --git a/packages/playground/fixtures/pathInfo.ts b/packages/playground/fixtures/pathInfo.ts index a6befc89b9e..72fec27d592 100644 --- a/packages/playground/fixtures/pathInfo.ts +++ b/packages/playground/fixtures/pathInfo.ts @@ -39,7 +39,7 @@ async function calcPathInfo( } export const pathInfoFixtures: Fixtures = { - pathInfo: async ({}, use, { file, workerIndex }) => { + pathInfo: async ({ page: _ }: any, use, { file, workerIndex }) => { const pathInfo: PathInfo = await calcPathInfo(file, String(workerIndex)); await use(pathInfo); await fs.remove(pathInfo.tempProjectDir);