()
| 56 | } |
| 57 | |
| 58 | export function getGlobalContinueIgnorePath(): string { |
| 59 | const continueIgnorePath = path.join( |
| 60 | getContinueGlobalPath(), |
| 61 | ".continueignore", |
| 62 | ); |
| 63 | if (!fs.existsSync(continueIgnorePath)) { |
| 64 | fs.writeFileSync(continueIgnorePath, ""); |
| 65 | } |
| 66 | return continueIgnorePath; |
| 67 | } |
| 68 | |
| 69 | export function getContinueGlobalPath(): string { |
| 70 | // This is ~/.continue on mac/linux |
no test coverage detected