Skip to content

Commit

Permalink
build: enable biome performance rules (#10027)
Browse files Browse the repository at this point in the history
Disabled `noDelete` to avoid a huge change log. We can enable it
gradually.
  • Loading branch information
anonrig authored Jan 3, 2024
1 parent 1cd771a commit 4bd1af1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"noUnusedImports": "error"
},
"performance": {
"noAccumulatingSpread": "error"
"all": true,
"noAccumulatingSpread": "error",
"noDelete": "off"
}
},
"ignore": [".vscode/*", "**/*.json"]
Expand Down

0 comments on commit 4bd1af1

Please sign in to comment.