Skip to content

Commit

Permalink
chore: update lint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
mew-ton committed May 17, 2024
1 parent 0e3e832 commit 317ec36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 6 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -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"]
},
Expand All @@ -9,7 +9,11 @@
"linter": {
"enabled": true,
"rules": {
"all": true
"all": true,
"performance": {
"noReExportAll": "off",
"noBarrelFile": "off"
}
}
},
"formatter": {
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export type { Folded, Unfolded } from './type'
// biome-ignore lint/performance/noBarrelFile: <explanation>
export { fold } from './fold'
export { has } from './has'
export { unfold } from './unfold'
Expand Down

0 comments on commit 317ec36

Please sign in to comment.