Files
AIPex/biome.json
ropzislaw ccb50fccc1 chore: update schema version and improve component accessibility
- Updated the Biome schema version from 2.3.13 to 2.3.14 for compatibility.
- Enhanced the PromptInput component by changing the skill label from a span to a button for better accessibility and user interaction.
- Corrected spelling of "AIPex" to "AIpex" in multiple test cases for consistency.
- Added a comment in the SettingsPage component to clarify the purpose of the initialSkill prop for future use.
- Improved type checking in the app-root component to ensure timestamp is a number before comparison.
2026-02-14 17:36:09 +08:00

65 lines
1.2 KiB
JSON

{
"root": true,
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"css": {
"parser": {
"tailwindDirectives": true
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"a11y": {
"useSemanticElements": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"complexity": {
"useLiteralKeys": "off"
}
}
},
"overrides": [
{
"includes": ["**/*.json"],
"formatter": {
"indentStyle": "space",
"indentWidth": 2
}
},
{
"includes": ["**/*.d.ts"],
"linter": {
"rules": {
"complexity": {
"noBannedTypes": "off"
}
}
}
}
],
"files": {
"includes": [
"**",
"!**/dist",
"!**/coverage",
"!**/build",
"!**/assets",
"!**/bundled-modules",
"!**/.vscode",
"!.history"
]
}
}