MCPcopy Index your code
hub / github.com/continuedev/continue / getGlobalContinueIgnorePath

Function getGlobalContinueIgnorePath

core/util/paths.ts:58–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56}
57
58export 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
69export function getContinueGlobalPath(): string {
70 // This is ~/.continue on mac/linux

Callers 1

getGlobalContinueIgArrayFunction · 0.90

Calls 1

getContinueGlobalPathFunction · 0.85

Tested by

no test coverage detected