experiment: Add feature exp flag for folder trust (#5709)

This commit is contained in:
shrutip90 2025-08-06 15:27:21 -07:00 committed by GitHub
parent 5cd63a6abc
commit 626844b539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 44 additions and 0 deletions

View file

@ -313,6 +313,8 @@ export async function loadCliConfig(
const ideModeFeature =
argv.ideModeFeature ?? settings.ideModeFeature ?? false;
const folderTrustFeature = settings.folderTrustFeature ?? false;
const allExtensions = annotateActiveExtensions(
extensions,
argv.extensions || [],
@ -480,6 +482,7 @@ export async function loadCliConfig(
summarizeToolOutput: settings.summarizeToolOutput,
ideMode,
ideModeFeature,
folderTrustFeature,
});
}