Skip to content

Add setting for caching level in the language server analysis #7468

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Sep 19, 2019
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ac9b5f1
Fix progress for new LS
Mar 2, 2019
d3be59d
Fix progress for new LS
Mar 2, 2019
e166d44
Revert "Fix progress for new LS"
Mar 2, 2019
5bcc6d0
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Mar 11, 2019
462af13
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Mar 13, 2019
1a816eb
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Apr 1, 2019
502a170
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Apr 30, 2019
c1d2713
Merge branch 'master' of https://github.com/Microsoft/vscode-python
May 21, 2019
a5d9651
Upgrade to LSP 3.14
May 21, 2019
9684998
Merge branch 'master' of https://github.com/Microsoft/vscode-python
May 21, 2019
9a28bf4
Lock file
May 21, 2019
7dab78c
Update to language client v5
May 22, 2019
80d455a
Option for stub cache path
May 31, 2019
ccce142
Cache path option
May 31, 2019
3961bd0
Backward compat
May 31, 2019
4f4f789
Fix intellisense tests by monkey patching out checkVersion call
rchiodo May 31, 2019
71d10cc
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Jun 19, 2019
25b3fd6
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Jul 16, 2019
347b969
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Aug 13, 2019
98426f3
Merge branch 'master' of https://github.com/Microsoft/vscode-python
Aug 20, 2019
cf597fa
Add caching setting
Aug 21, 2019
dde62d9
Merge branch 'master' of https://github.com/MikhailArkhipov/vscode-py…
Aug 21, 2019
5ae8848
Change help string
Sep 18, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1754,6 +1754,17 @@
"description": "Limits depth of the symbol tree in the document outline.",
"scope": "resource"
},
"python.analysis.cachingLevel": {
"type": "string",
"enum": [
"None",
"System",
"Library"
],
"default": "None",
"description": "Defines which types of modules get their analysis cached.",
"scope": "resource"
},
"python.linting.enabled": {
"type": "boolean",
"default": true,
Expand Down