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"