( workspaceDir: string, ruleName: string, )
| 17 | * Creates the file path for a rule in the workspace .continue/rules directory |
| 18 | */ |
| 19 | export function createRuleFilePath( |
| 20 | workspaceDir: string, |
| 21 | ruleName: string, |
| 22 | ): string { |
| 23 | return joinPathsToUri( |
| 24 | workspaceDir, |
| 25 | ...createRelativeRuleFilePathParts(ruleName), |
| 26 | ); |
| 27 | } |
no test coverage detected