Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion theme-builder/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,21 @@
"enabled": true,
"rules": {
"recommended": true,
"suspicious": { "noGlobalIsFinite": "off", "noArrayIndexKey": "warn" },
"suspicious": {
"noArrayIndexKey": "warn",
"noConsole": {
"level": "warn",
"options": {
"allow": [
"assert",
"error",
"info",
"warn"
]
}
},
"noGlobalIsFinite":"off"
Copy link

Copilot AI Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing space after colon in "noGlobalIsFinite":"off". For consistency with the rest of the file's formatting style (e.g., line 15), this should be "noGlobalIsFinite": "off" with a space after the colon.

Suggested change
"noGlobalIsFinite":"off"
"noGlobalIsFinite": "off"

Copilot uses AI. Check for mistakes.
},
"correctness": {
"noUnusedVariables": "warn",
"useHookAtTopLevel": "error",
Expand Down