diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index d5066d6437..e070b3527c 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -1777,10 +1777,6 @@ export class Config { * @returns true if the path is allowed, false otherwise. */ isPathAllowed(absolutePath: string): boolean { - if (this.interactive && path.isAbsolute(absolutePath)) { - return true; - } - const realpath = (p: string) => { let resolved: string; try {