Skip to content

Commit

Permalink
fix: Turn off custom rendering by default. (#3817)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Nov 19, 2024
1 parent 551c779 commit 7f7906b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3030,7 +3030,7 @@
"type": "string"
},
"textDecorationStyle": {
"default": "wavy",
"default": "dashed",
"enum": [
"solid",
"wavy",
Expand Down Expand Up @@ -3119,7 +3119,7 @@
"type": "string"
},
"textDecorationStyle": {
"default": "wavy",
"default": "dashed",
"enum": [
"solid",
"wavy",
Expand Down Expand Up @@ -3191,7 +3191,7 @@
"type": "string"
},
"cSpell.textDecorationStyle": {
"default": "wavy",
"default": "dashed",
"enum": [
"solid",
"wavy",
Expand All @@ -3212,7 +3212,7 @@
"type": "string"
},
"cSpell.useCustomDecorations": {
"default": true,
"default": false,
"markdownDescription": "Draw custom decorations on Spelling Issues.\n- `true` - Use custom decorations. - VS Code Diagnostic Severity Levels are not used.\n- `false` - Use the VS Code Diagnostic Collection to render spelling issues.\n\nNote: This setting overrides the VS Code Diagnostics setting: `#cSpell.diagnosticLevel#`.",
"scope": "application",
"since": "4.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/_server/spell-checker-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2623,7 +2623,7 @@
"type": "string"
},
"textDecorationStyle": {
"default": "wavy",
"default": "dashed",
"description": "The CSS line style used to decorate issues.\n\nSee: [text-decoration - CSS: Cascading Style Sheets, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration)\n- style - `solid`, `wavy`, `dotted`, see: [text-decoration-style, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style)",
"enum": [
"solid",
Expand Down Expand Up @@ -2722,7 +2722,7 @@
"type": "string"
},
"textDecorationStyle": {
"default": "wavy",
"default": "dashed",
"description": "The CSS line style used to decorate issues.\n\nSee: [text-decoration - CSS: Cascading Style Sheets, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration)\n- style - `solid`, `wavy`, `dotted`, see: [text-decoration-style, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style)",
"enum": [
"solid",
Expand Down Expand Up @@ -2802,7 +2802,7 @@
"type": "string"
},
"cSpell.textDecorationStyle": {
"default": "wavy",
"default": "dashed",
"description": "The CSS line style used to decorate issues.\n\nSee: [text-decoration - CSS: Cascading Style Sheets, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration)\n- style - `solid`, `wavy`, `dotted`, see: [text-decoration-style, MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style)",
"enum": [
"solid",
Expand All @@ -2825,7 +2825,7 @@
"type": "string"
},
"cSpell.useCustomDecorations": {
"default": true,
"default": false,
"description": "Draw custom decorations on Spelling Issues.\n- `true` - Use custom decorations. - VS Code Diagnostic Severity Levels are not used.\n- `false` - Use the VS Code Diagnostic Collection to render spelling issues.\n\nNote: This setting overrides the VS Code Diagnostics setting: `#cSpell.diagnosticLevel#`.",
"markdownDescription": "Draw custom decorations on Spelling Issues.\n- `true` - Use custom decorations. - VS Code Diagnostic Severity Levels are not used.\n- `false` - Use the VS Code Diagnostic Collection to render spelling issues.\n\nNote: This setting overrides the VS Code Diagnostics setting: `#cSpell.diagnosticLevel#`.",
"scope": "application",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ interface Decoration {
*
* @scope application
* @since 4.0.0
* @default "wavy"
* @default "dashed"
*/
textDecorationStyle?: 'solid' | 'wavy' | 'dotted' | 'dashed' | 'double';

Expand Down Expand Up @@ -191,7 +191,7 @@ export interface AppearanceSettings extends Appearance {
*
* @scope application
* @since 4.0.0
* @default true
* @default false
*/
useCustomDecorations?: boolean;

Expand Down

0 comments on commit 7f7906b

Please sign in to comment.