Skip to content

Commit dab7c74

Browse files
authored
Remove unused LS settings from package.json (microsoft#13741)
1 parent 6ce63b8 commit dab7c74

File tree

2 files changed

+0
-25
lines changed

2 files changed

+0
-25
lines changed

package.json

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,12 +2593,6 @@
25932593
"description": "Defines type of the language server.",
25942594
"scope": "window"
25952595
},
2596-
"python.analysis.openFilesOnly": {
2597-
"type": "boolean",
2598-
"default": true,
2599-
"description": "Only show errors and warnings for open files rather than for the entire workspace.",
2600-
"scope": "resource"
2601-
},
26022596
"python.analysis.diagnosticPublishDelay": {
26032597
"type": "integer",
26042598
"default": 1000,
@@ -2661,12 +2655,6 @@
26612655
"description": "Allows code analysis to keep parser trees in memory. Increases memory consumption but may improve performance with large library analysis.",
26622656
"scope": "resource"
26632657
},
2664-
"python.analysis.memory.keepLibraryLocalVariables": {
2665-
"type": "boolean",
2666-
"default": false,
2667-
"description": "Allows code analysis to keep library function local variables. Allows code navigation in Python libraries function bodies. Increases memory consumption.",
2668-
"scope": "resource"
2669-
},
26702658
"python.analysis.logLevel": {
26712659
"type": "string",
26722660
"enum": [
@@ -2685,18 +2673,6 @@
26852673
"description": "Limits depth of the symbol tree in the document outline.",
26862674
"scope": "resource"
26872675
},
2688-
"python.analysis.cachingLevel": {
2689-
"type": "string",
2690-
"enum": [
2691-
"Default",
2692-
"None",
2693-
"System",
2694-
"Library"
2695-
],
2696-
"default": "Default",
2697-
"description": "Defines which types of modules get their analysis cached.",
2698-
"scope": "resource"
2699-
},
27002676
"python.linting.enabled": {
27012677
"type": "boolean",
27022678
"default": true,

src/client/common/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@ export enum AnalysisSettingsLogLevel {
325325
export type LanguageServerDownloadChannels = 'stable' | 'beta' | 'daily';
326326
export interface IAnalysisSettings {
327327
readonly downloadChannel?: LanguageServerDownloadChannels;
328-
readonly openFilesOnly: boolean;
329328
readonly typeshedPaths: string[];
330329
readonly cacheFolderPath: string | null;
331330
readonly errors: string[];

0 commit comments

Comments
 (0)