()
| 17 | * - Privacy level is no-telemetry or essential-traffic |
| 18 | */ |
| 19 | export function isAnalyticsDisabled(): boolean { |
| 20 | return ( |
| 21 | process.env.NODE_ENV === 'test' || |
| 22 | isEnvTruthy(process.env.CLAUDE_CODE_USE_BEDROCK) || |
| 23 | isEnvTruthy(process.env.CLAUDE_CODE_USE_VERTEX) || |
| 24 | isEnvTruthy(process.env.CLAUDE_CODE_USE_FOUNDRY) || |
| 25 | isTelemetryDisabled() |
| 26 | ) |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Check if the feedback survey should be suppressed. |
no test coverage detected