hasClaudeConfig method
Check if CLAUDE.md exists
Implementation
bool hasClaudeConfig() {
try {
final projectDir = getProjectDirectory();
return File(path.join(projectDir, 'CLAUDE.md')).existsSync();
} catch (e) {
return false;
}
}
Check if CLAUDE.md exists
bool hasClaudeConfig() {
try {
final projectDir = getProjectDirectory();
return File(path.join(projectDir, 'CLAUDE.md')).existsSync();
} catch (e) {
return false;
}
}