Skip to content

Commit e9fb3b2

Browse files
committed
Remove old show unused settings
You should use `editor.showUnused` instead. Possibly with a language specific setting: ``` "[typescript]": { "editor.showUnused": false } ```
1 parent a7e3183 commit e9fb3b2

2 files changed

Lines changed: 0 additions & 13 deletions

File tree

extensions/typescript-language-features/package.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -477,18 +477,6 @@
477477
"description": "%typescript.preferences.importModuleSpecifier%",
478478
"scope": "resource"
479479
},
480-
"javascript.showUnused": {
481-
"type": "boolean",
482-
"default": true,
483-
"description": "%typescript.showUnused%",
484-
"scope": "resource"
485-
},
486-
"typescript.showUnused": {
487-
"type": "boolean",
488-
"default": true,
489-
"description": "%typescript.showUnused%",
490-
"scope": "resource"
491-
},
492480
"typescript.updateImportsOnFileMove.enabled": {
493481
"type": "string",
494482
"enum": [

extensions/typescript-language-features/package.nls.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"typescript.suggestionActions.enabled": "Enable/disable suggestion diagnostics for TypeScript files in the editor. Requires using TypeScript 2.8 or newer in the workspace.",
5555
"typescript.preferences.quoteStyle": "Preferred quote style to use for quick fixes: 'single' quotes, 'double' quotes, or 'auto' infer quote type from existing imports. Requires using TypeScript 2.9 or newer in the workspace.",
5656
"typescript.preferences.importModuleSpecifier": "Preferred path style for auto imports:\n- \"relative\" to the file location.\n- \"non-relative\" based on the 'baseUrl' configured in your 'jsconfig.json' / 'tsconfig.json'.\n- \"auto\" infer the shortest path type.\nRequires using TypeScript 2.9 or newer in the workspace.",
57-
"typescript.showUnused": "Enable/disable highlighting of unused variables in code. Requires using TypeScript 2.9 or newer in the workspace.",
5857
"typescript.updateImportsOnFileMove.enabled": "Enable/disable automatic updating of import paths when you rename or move a file in VS Code. Possible values are: 'prompt' on each rename, 'always' update paths automatically, and 'never' rename paths and don't prompt me. Requires using TypeScript 2.9 or newer in the workspace.",
5958
"typescript.autoClosingTags": "Enable/disable automatic closing of JSX tags. Requires using TypeScript 3.0 or newer in the workspace."
6059
}

0 commit comments

Comments
 (0)