Mobile support to come.
{
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": true,
"includes": ["**/*"]
},
"css": {
"parser": {
"tailwindDirectives": true
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"enabled": true,
"domains": {
"next": "recommended",
"react": "recommended"
},
"rules": {
"recommended": true,
"a11y": {
"noAutofocus": "off"
},
"suspicious": {
"noUnknownAtRules": "off"
},
"style": {
"noRestrictedImports": {
"level": "error",
"options": {
"paths": {
"next/link": "Use @/app/ui/link instead to handle dynamic slug segments correctly."
}
}
}
}
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"overrides": [
{
"includes": ["app/ui/link.tsx"],
"linter": {
"rules": {
"style": {
"noRestrictedImports": "off"
}
}
}
}
]
}