shouldSkip method

bool shouldSkip(
  1. String stepId
)

Implementation

bool shouldSkip(String stepId) {
  if (skipSteps.contains(stepId)) return true;
  if (stepId == 'update_check' && skipUpdateCheck) return true;
  if (stepId == 'telemetry' && skipTelemetry) return true;
  if (stepId == 'plugins' && skipPlugins) return true;
  if (stepId == 'mcp_servers' && skipMcpServers) return true;
  if (stepId == 'doctor' && skipDoctor) return true;
  return false;
}