From 3581910469c95ca56c7ded4a5a700f2b05874863 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Thu, 16 Jul 2020 15:49:16 -0700 Subject: [PATCH] Improved documentation for useLibraryCodeForTypes setting. --- docs/settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/settings.md b/docs/settings.md index deecfc159..9580f841d 100644 --- a/docs/settings.md +++ b/docs/settings.md @@ -8,7 +8,7 @@ The Pyright VS Code extension honors the following settings. **pyright.openFilesOnly** [boolean]: Determines whether pyright analyzes (and reports errors for) all files in the workspace, as indicated by the config file. If this option is set to true, pyright analyzes only open files. This setting is deprecated in favor of python.analysis.diagnosticMode. It will be removed at a future time. -**pyright.useLibraryCodeForTypes** [boolean]: Determines whether pyright reads, parses and analyzes library code to extract type information in the absence of type stub files. This can add significant overhead and may result in poor-quality type information. The default value for this option is false. +**pyright.useLibraryCodeForTypes** [boolean]: Determines whether pyright reads, parses and analyzes library code to extract type information in the absence of type stub files. Type information will typically be incomplete. We recommend using type stubs where possible. The default value for this option is false. **python.analysis.typeshedPaths** [array of paths]: Paths to look for typeshed modules. Pyright currently honors only the first path in the array.