Files
AIPex/biome.json
jk4235 f130a99d65 fix: update dom-locator.test.ts to match new API
- DomLocator now only takes tabId, methods require uid parameter
- DomElementHandle is now imported from dom-element-handle.ts
- DomElementHandle constructor takes (tabId, node: TextSnapshotNode)
2026-01-28 13:52:22 +08:00

65 lines
1.2 KiB
JSON

{
"root": true,
"$schema": "https://biomejs.dev/schemas/2.3.13/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"
]
}
}