Last active
March 29, 2022 17:28
-
-
Save shollingsworth/f767b2aef8a45710bdc388511d5aca81 to your computer and use it in GitHub Desktop.
example pyright config more settings at https://github.com/microsoft/pyright/blob/main/docs/configuration.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "venv" : "/path/to/venv", | |
| "exclude": [ | |
| "**/node_modules", | |
| "**/__pycache__", | |
| "**/*.zip" | |
| ], | |
| "include": [ | |
| "src" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment