(toolName: string)
| 89 | |
| 90 | // Helper to check if a tool uses file patterns |
| 91 | export function isFilePatternTool(toolName: string): boolean { |
| 92 | return TOOL_VALIDATION_CONFIG.filePatternTools.includes(toolName) |
| 93 | } |
| 94 | |
| 95 | // Helper to check if a tool uses bash prefix patterns |
| 96 | export function isBashPrefixTool(toolName: string): boolean { |
no outgoing calls
no test coverage detected