* Compose the strip filters applied to every settings-sourced env object.
( env: Record<string, string> | undefined, )
| 83 | * Compose the strip filters applied to every settings-sourced env object. |
| 84 | */ |
| 85 | function filterSettingsEnv( |
| 86 | env: Record<string, string> | undefined, |
| 87 | ): Record<string, string> { |
| 88 | return withoutCcdSpawnEnvKeys( |
| 89 | withoutHostManagedProviderVars(withoutSSHTunnelVars(env)), |
| 90 | ) |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Trusted setting sources whose env vars can be applied before the trust dialog. |
no test coverage detected