()
| 177 | * @returns Array of tool names |
| 178 | */ |
| 179 | export function getToolsForDefaultPreset(): string[] { |
| 180 | const tools = getAllBaseTools() |
| 181 | const isEnabled = tools.map(tool => tool.isEnabled()) |
| 182 | return tools.filter((_, i) => isEnabled[i]).map(tool => tool.name) |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Get the complete exhaustive list of all tools that could be available |
no test coverage detected