-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed pyright config from yaml to toml
- Loading branch information
1 parent
5afb918
commit 39c9b07
Showing
9 changed files
with
52 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Pyright's actual config is a json file but we're using yaml here so we | ||
# can include lovely comments (yaml is a superset of json) and then we | ||
# bake it down into a json file. | ||
|
||
# For now I'm listing explicit things here. Once we get everything | ||
# passing we can autogenerate the include list like we do for other | ||
# checkers. | ||
include = [ 'tools' ] | ||
|
||
# Ideally we should get to 'strict' for everying if we want to consider | ||
# leaning on this as much as we do mypy. | ||
typeCheckingMode = 'basic' | ||
|
||
reportMissingTypeStubs = true | ||
stubPath = 'src/stubs' | ||
pythonPlatform = 'Linux' |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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