fix
Automatically fix code issues including lint errors, TypeScript problems, formatting inconsistencies, import organization, and unused code detection.
Instructions
【自动修复】自动修复代码问题(Lint、TypeScript、格式化等)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | 需要修复的代码 | |
| type | No | 修复类型:lint, type, format, import, unused, all(默认 all) |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "需要修复的代码",
"type": "string"
},
"type": {
"description": "修复类型:lint, type, format, import, unused, all(默认 all)",
"type": "string"
}
},
"required": [],
"type": "object"
}