(name: string)
| 72 | * neither indexes or watches the other's index directory. |
| 73 | */ |
| 74 | export function isCodeGraphDataDir(name: string): boolean { |
| 75 | return ( |
| 76 | name === DEFAULT_CODEGRAPH_DIR || |
| 77 | name === codeGraphDirName() || |
| 78 | name.startsWith(DEFAULT_CODEGRAPH_DIR + '-') |
| 79 | ); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Get the .codegraph directory path for a project |
no test coverage detected