Files
claude-code-viewer/biome.json
d-kimsuon 81a5d31f6e feat: integrate @anthropic-ai/claude-agent-sdk for latest version
- Added @anthropic-ai/claude-agent-sdk as a dependency for improved functionality.
- Updated controllablePromise to include a status property, allowing tracking of promise states (pending, resolved, rejected).
- Adjusted query function to utilize the new agent SDK for enhanced query capabilities.
- Updated i18n message files for better formatting and consistency.
2025-10-20 01:03:13 +09:00

57 lines
1.0 KiB
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/*.generated.*",
"!.next",
"!src/lib/$path.ts",
"!**/*.css",
"!dist",
"!playwright.config.ts",
"!src/lib/i18n/locales/*/messages.ts"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noProcessEnv": "error"
},
"correctness": {
"useUniqueElementIds": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"json": {
"parser": {
"allowComments": true
}
},
"overrides": [
{
"includes": ["e2e/**"],
"linter": {
"enabled": false
}
}
]
}