Skip to content

Commit bb1b9de

Browse files
Mikhail Arkhipovkimadeline
Mikhail Arkhipov
authored andcommitted
Add setting for caching level in the language server analysis (#7468)
* Fix progress for new LS * Fix progress for new LS * Revert "Fix progress for new LS" * Upgrade to LSP 3.14 * Lock file * Update to language client v5 * Cache path option * Backward compat * Fix intellisense tests by monkey patching out checkVersion call * Add caching setting * Change help string
1 parent d95d620 commit bb1b9de

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1874,6 +1874,17 @@
18741874
"description": "Limits depth of the symbol tree in the document outline.",
18751875
"scope": "resource"
18761876
},
1877+
"python.analysis.cachingLevel": {
1878+
"type": "string",
1879+
"enum": [
1880+
"None",
1881+
"System",
1882+
"Library"
1883+
],
1884+
"default": "None",
1885+
"description": "Defines which types of modules get their analysis cached.",
1886+
"scope": "resource"
1887+
},
18771888
"python.linting.enabled": {
18781889
"type": "boolean",
18791890
"default": true,

0 commit comments

Comments
 (0)