Skip to content

Commit

Permalink
Update README.md (#6540)
Browse files Browse the repository at this point in the history
Copied the descriptions and new `standard` type checking mode from pyrx\packages\vscode-pylance\package.nls.json
  • Loading branch information
StellaHuang95 authored Oct 8, 2024
1 parent 4590949 commit 9c9b2c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ Pylance provides users with the ability to customize their Python language suppo
> Note that the value of this setting can be overridden by having a pyrightconfig.json or a pyproject.toml. For more information see this [link](https://aka.ms/AArua4c).
- Available values:
- `off`: No type checking analysis is conducted; unresolved imports/variables diagnostics are produced
- `basic`: Non-type checking-related rules (all rules in `off`) + basic type checking rules
- `strict`: All type checking rules at the highest severity of error (includes all rules in `off` and `basic` categories)
- `basic`: All `off` rules + basic type checking rules
- `standard`: All `off` rules + basic type checking rules + standard type checking rules
- `strict`: All `off` rules + all type checking rules.
- Performance Consideration:
- Setting `python.analysis.typeCheckingMode` to `off` can improve performance by disabling type checking analysis, which can be resource-intensive, especially in large codebases.

Expand Down

0 comments on commit 9c9b2c3

Please sign in to comment.