Interface WorkspaceTrustSettings

To prevent the unwanted execution of untrusted code, WorkspaceTrustSettings are use to set the trust levels.

Trust setting have an impact on both cspell.config.js files and on .pnp.js files. In an untrusted location, these files will NOT be used.

This will also prevent any associated plugins from being loaded.

interface WorkspaceTrustSettings {
    trustLevel?: TrustLevel;
    trustedFiles?: Glob[];
    untrustedFiles?: Glob[];
}

Properties

trustLevel?: TrustLevel

Sets the default trust level.

Default

"trusted"
trustedFiles?: Glob[]

Glob patterns of locations that contain ALWAYS trusted files.

untrustedFiles?: Glob[]

Glob patterns of locations that contain NEVER trusted files.