pyright/docs/command-line.md

2.2 KiB
Raw Blame History

Pyright Command-Line Options

Pyright can be run as either a VS Code extension or as a node-based command-line tool. The command-line version allows for the following options:

Flag Description
-h, --help Show help message
-p, --project FILE OR DIRECTORY Use the configuration file at this location
--stats Print detailed performance stats
-t, --typeshed-path DIRECTORY Use typeshed type stubs at this location (1)
-v, --venv-path DIRECTORY Directory that contains virtual environments (2)
-w, --watch Continue to run and watch for changes (3)

(1) Pyright has built-in typeshed type stubs for Python stdlib functionality. To use a different version of typeshed type stubs, specify the directory with this option.

(2) This option is used in conjunction with configuration file, which can refer to different virtual environments by name. For more details, refer to the configuration documentation. This allows a common config file to be checked in to the project and shared by everyone on the development team without making assumptions about the local paths to the venv directory on each developers computer.

(3) When running in watch mode, pyright will reanalyze only those files that have been modified. These “deltas” are typically much faster than the initial analysis, which needs to analyze all files in the source tree.

Pyright Exit Codes

Exit Code Meaning
0 No errors or warnings reported
1 One or more errors or warnings reported
2 Fatal error occurred with no errors or warnings reported