mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
Adopt unified js/ts setting for diagnostic settings
For #292934 Also renames validate.enable to `validate.enabled` to align with other settings
This commit is contained in:
@@ -29,6 +29,9 @@
|
||||
"typescript.tsserver.pluginPaths.item": "Either an absolute or relative path. Relative path will be resolved against workspace folder(s).",
|
||||
"typescript.tsserver.trace": "Enables tracing of messages sent to the TS server. This trace can be used to diagnose TS Server issues. The trace may contain file paths, source code, and other potentially sensitive information from your project.",
|
||||
"typescript.validate.enable": "Enable/disable TypeScript validation.",
|
||||
"javascript.validate.enable": "Enable/disable JavaScript validation.",
|
||||
"configuration.validate.enable": "Enable/disable JavaScript and TypeScript validation.",
|
||||
"configuration.validate.enable.unifiedDeprecationMessage": "This setting is deprecated. Use `#js/ts.validate.enable#` instead.",
|
||||
"typescript.format.enable": "Enable/disable default TypeScript formatter.",
|
||||
"javascript.format.enable": "Enable/disable default JavaScript formatter.",
|
||||
"format.insertSpaceAfterCommaDelimiter": "Defines space handling after a comma delimiter.",
|
||||
@@ -72,7 +75,6 @@
|
||||
"configuration.format.placeOpenBraceOnNewLineForControlBlocks.unifiedDeprecationMessage": "This setting is deprecated. Use `#js/ts.format.placeOpenBraceOnNewLineForControlBlocks#` instead.",
|
||||
"configuration.format.semicolons.unifiedDeprecationMessage": "This setting is deprecated. Use `#js/ts.format.semicolons#` instead.",
|
||||
"configuration.format.indentSwitchCase.unifiedDeprecationMessage": "This setting is deprecated. Use `#js/ts.format.indentSwitchCase#` instead.",
|
||||
"javascript.validate.enable": "Enable/disable JavaScript validation.",
|
||||
"javascript.goToProjectConfig.title": "Go to Project Configuration (jsconfig / tsconfig)",
|
||||
"typescript.goToProjectConfig.title": "Go to Project Configuration (tsconfig)",
|
||||
"configuration.referencesCodeLens.enabled": "Enable/disable references CodeLens in JavaScript and TypeScript files. This CodeLens shows the number of references for classes and exported functions and allows you to peek or navigate to them.",
|
||||
@@ -89,6 +91,7 @@
|
||||
"typescript.restartTsServer": "Restart TS Server",
|
||||
"typescript.selectTypeScriptVersion.title": "Select TypeScript Version...",
|
||||
"typescript.reportStyleChecksAsWarnings": "Report style checks as warnings.",
|
||||
"configuration.reportStyleChecksAsWarnings.unifiedDeprecationMessage": "This setting is deprecated. Use `#js/ts.reportStyleChecksAsWarnings#` instead.",
|
||||
"typescript.npm": "Specifies the path to the npm executable used for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
|
||||
"typescript.check.npmIsInstalled": "Check if npm is installed for [Automatic Type Acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition).",
|
||||
"configuration.suggest.names": "Enable/disable including unique names from the file in JavaScript suggestions. Note that name suggestions are always disabled in JavaScript code that is semantically checked using `@ts-check` or `checkJs`.",
|
||||
|
||||
Reference in New Issue
Block a user