chore: fix lint and docs

This commit is contained in:
galz10
2026-03-11 13:58:11 -07:00
parent 450a331e36
commit 57ae86da96
2 changed files with 5 additions and 2 deletions

View File

@@ -756,7 +756,7 @@ their corresponding top-level category object in your `settings.json` file.
#### `tools`
- **`tools.sandbox`** (boolean | string | object):
- **`tools.sandbox`** (string):
- **Description:** Sandbox execution environment. Set to a boolean to enable
or disable the sandbox, provide a string path to a sandbox profile, or
specify an explicit sandbox command (e.g., "docker", "podman", "lxc").

View File

@@ -26,7 +26,10 @@ import {
serializeTerminalToObject,
type AnsiOutput,
} from '../utils/terminalSerializer.js';
import { sanitizeEnvironment, type EnvironmentSanitizationConfig } from './environmentSanitization.js';
import {
sanitizeEnvironment,
type EnvironmentSanitizationConfig,
} from './environmentSanitization.js';
import { NoopSandboxManager } from './sandboxManager.js';
import { killProcessGroup } from '../utils/process-utils.js';
const { Terminal } = pkg;