diff --git a/cspell.schema.json b/cspell.schema.json index f4276160783..41310f4a13e 100644 --- a/cspell.schema.json +++ b/cspell.schema.json @@ -875,7 +875,7 @@ "type": "array" }, "loadDefaultConfiguration": { - "default": "true;", + "default": true, "description": "By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false` will prevent ALL default configuration from being loaded.", "type": "boolean" }, @@ -1323,7 +1323,7 @@ "type": "array" }, "loadDefaultConfiguration": { - "default": "true;", + "default": true, "description": "By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false` will prevent ALL default configuration from being loaded.", "type": "boolean" }, diff --git a/packages/cspell-types/cspell.schema.json b/packages/cspell-types/cspell.schema.json index f4276160783..41310f4a13e 100644 --- a/packages/cspell-types/cspell.schema.json +++ b/packages/cspell-types/cspell.schema.json @@ -875,7 +875,7 @@ "type": "array" }, "loadDefaultConfiguration": { - "default": "true;", + "default": true, "description": "By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false` will prevent ALL default configuration from being loaded.", "type": "boolean" }, @@ -1323,7 +1323,7 @@ "type": "array" }, "loadDefaultConfiguration": { - "default": "true;", + "default": true, "description": "By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false` will prevent ALL default configuration from being loaded.", "type": "boolean" }, diff --git a/packages/cspell-types/src/CSpellSettingsDef.ts b/packages/cspell-types/src/CSpellSettingsDef.ts index 5f5ebb87f34..e5a3f1fc630 100644 --- a/packages/cspell-types/src/CSpellSettingsDef.ts +++ b/packages/cspell-types/src/CSpellSettingsDef.ts @@ -165,7 +165,7 @@ export interface Settings extends ReportingConfiguration, BaseSetting, PnPSettin /** * By default, the bundled dictionary configurations are loaded. Explicitly setting this to `false` * will prevent ALL default configuration from being loaded. - * @default true; + * @default true */ loadDefaultConfiguration?: boolean; }