diff --git a/docs/_includes/generated-docs/configuration.md b/docs/_includes/generated-docs/configuration.md index 7f0024528..d30498c46 100644 --- a/docs/_includes/generated-docs/configuration.md +++ b/docs/_includes/generated-docs/configuration.md @@ -635,7 +635,7 @@ Default | [`cSpell.checkOnlyEnabledFileTypes`](#cspellcheckonlyenabledfiletypes) | resource | Check Only Enabled File Types | | [`cSpell.enableFiletypes`](#cspellenablefiletypes) | resource | File Types to Check | | [`cSpell.files`](#cspellfiles) | resource | Glob patterns of files to be checked. | -| [`cSpell.globRoot`](#cspellglobroot) | resource | The root to use for glop patterns found in this configuration. | +| [`cSpell.globRoot`](#cspellglobroot) | resource | The root to use for glob patterns found in this configuration. | | [`cSpell.ignorePaths`](#cspellignorepaths) | resource | Glob patterns of files to be ignored | | [`cSpell.import`](#cspellimport) | resource | Allows this configuration to inherit configuration for one or more other files. | | [`cSpell.noConfigSearch`](#cspellnoconfigsearch) | resource | Prevents searching for local configuration when checking individual documents. | @@ -763,7 +763,7 @@ Scope : resource Description -: The root to use for glop patterns found in this configuration. +: The root to use for glob patterns found in this configuration. Default: The current workspace folder. Use `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file. Defining globRoot, does not impact imported configurations. diff --git a/package.json b/package.json index 7a281d040..7e86d88d4 100644 --- a/package.json +++ b/package.json @@ -1266,7 +1266,7 @@ }, "cSpell.globRoot": { "description": "", - "markdownDescription": "The root to use for glop patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:}` - Where `` is the name of the workspace folder.", + "markdownDescription": "The root to use for glob patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:}` - Where `` is the name of the workspace folder.", "scope": "resource", "type": "string" }, diff --git a/packages/_server/spell-checker-config.schema.json b/packages/_server/spell-checker-config.schema.json index 52901f19d..1ea696992 100644 --- a/packages/_server/spell-checker-config.schema.json +++ b/packages/_server/spell-checker-config.schema.json @@ -776,7 +776,7 @@ }, "cSpell.globRoot": { "description": "", - "markdownDescription": "The root to use for glop patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:}` - Where `` is the name of the workspace folder.", + "markdownDescription": "The root to use for glob patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:}` - Where `` is the name of the workspace folder.", "scope": "resource", "type": "string" }, diff --git a/packages/_server/src/config/cspellConfig/CSpellSettingsPackageProperties.ts b/packages/_server/src/config/cspellConfig/CSpellSettingsPackageProperties.ts index e957a08cb..70bb168c1 100644 --- a/packages/_server/src/config/cspellConfig/CSpellSettingsPackageProperties.ts +++ b/packages/_server/src/config/cspellConfig/CSpellSettingsPackageProperties.ts @@ -161,7 +161,7 @@ export interface CSpellSettingsPackageProperties extends CSpellSettings { /** * @description * @markdownDescription - * The root to use for glop patterns found in this configuration. + * The root to use for glob patterns found in this configuration. * Default: The current workspace folder. * Use `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file. * Defining globRoot, does not impact imported configurations.