(path: string)
| 614 | |
| 615 | // Helper to check if a path has glob characters (excluding trailing /**) |
| 616 | const hasGlobs = (path: string): boolean => { |
| 617 | const stripped = path.replace(/\/\*\*$/, '') |
| 618 | return /[*?[\]]/.test(stripped) |
| 619 | } |
| 620 | |
| 621 | // Check all permission rules |
| 622 | for (const ruleString of [ |
no outgoing calls
no test coverage detected