fix: update descriptions for switch-case indentation settings in TypeScript and JavaScript

This commit is contained in:
aslezar
2024-12-31 13:06:32 +05:30
parent a91e6b684b
commit 97a5f18d0d
2 changed files with 4 additions and 3 deletions

View File

@@ -529,13 +529,13 @@
"typescript.format.indentSwitchCase": {
"type": "boolean",
"default": true,
"description": "%format.indentSwitchCase%",
"description": "%typescript.format.indentSwitchCase%",
"scope": "resource"
},
"javascript.format.indentSwitchCase": {
"type": "boolean",
"default": true,
"description": "%format.indentSwitchCase%",
"description": "%javascript.format.indentSwitchCase%",
"scope": "resource"
},
"javascript.validate.enable": {

View File

@@ -40,7 +40,8 @@
"format.semicolons.ignore": "Don't insert or remove any semicolons.",
"format.semicolons.insert": "Insert semicolons at statement ends.",
"format.semicolons.remove": "Remove unnecessary semicolons.",
"format.indentSwitchCase": "Indent case clauses in switch statements. Requires using TypeScript 5.1+ in the workspace.",
"typescript.format.indentSwitchCase": "Indent case clauses in switch statements in TypeScript Files. Requires using TypeScript 5.1+ in the workspace.",
"javascript.format.indentSwitchCase": "Indent case clauses in switch statements in JavaScript Files. Requires using TypeScript 5.1+ in the workspace.",
"javascript.validate.enable": "Enable/disable JavaScript validation.",
"javascript.goToProjectConfig.title": "Go to Project Configuration (jsconfig / tsconfig)",
"typescript.goToProjectConfig.title": "Go to Project Configuration (tsconfig)",