From 6a015174fd0d92fa7bf6e221462db42046f79e58 Mon Sep 17 00:00:00 2001 From: Matthias Giger Date: Mon, 30 Sep 2024 23:06:32 +0200 Subject: [PATCH] fix(configuration): additional biome properties release-npm --- configuration/biome.ts | 2 ++ package.json | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configuration/biome.ts b/configuration/biome.ts index 7bc7f71..4d0fe96 100644 --- a/configuration/biome.ts +++ b/configuration/biome.ts @@ -67,6 +67,7 @@ export const templates = { noDefaultExport: 'off', noNamespace: 'off', noParameterAssign: 'off', + noNamespaceImport: 'off', }, correctness: { noNodejsModules: 'off', @@ -87,6 +88,7 @@ export const templates = { }, performance: { noDelete: 'off', + useTopLevelRegex: 'off', // Often used in playwright tests. }, }, }, diff --git a/package.json b/package.json index 54e8c69..a043b5c 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ "zod": "^3.23.8" }, "devDependencies": { - "@biomejs/biome": "^1.9.1", - "@types/bun": "^1.1.9", + "@biomejs/biome": "^1.9.2", + "@types/bun": "^1.1.10", "@types/parse-gitignore": "^1.0.2", "eslint-config-airbnb": "^19.0.4", "typescript": "^5.6.2"