From 317ec366f10f3787be02f6f1e30fff334a4c7280 Mon Sep 17 00:00:00 2001 From: mew-ton Date: Fri, 17 May 2024 14:41:19 +0900 Subject: [PATCH] chore: update lint rule --- biome.json | 8 ++++++-- src/index.ts | 1 - 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/biome.json b/biome.json index 4bc72c2..e40f178 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.4.1/schema.json", + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", "files": { "ignore": ["node_modules", "coverage", ".astro", ".yarn"] }, @@ -9,7 +9,11 @@ "linter": { "enabled": true, "rules": { - "all": true + "all": true, + "performance": { + "noReExportAll": "off", + "noBarrelFile": "off" + } } }, "formatter": { diff --git a/src/index.ts b/src/index.ts index 8cd80dd..c8241bb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,4 @@ export type { Folded, Unfolded } from './type' -// biome-ignore lint/performance/noBarrelFile: export { fold } from './fold' export { has } from './has' export { unfold } from './unfold'