-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jos Verlinde <jos_verlinde@hotmail.com>
- Loading branch information
Showing
55 changed files
with
921 additions
and
332 deletions.
There are no files selected for viewing
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
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,22 @@ | ||
[mypy] | ||
platform = linux | ||
mypy_path = typings | ||
files = *.py | ||
exclude = typings[\\/].* | ||
custom_typing_module = typings/stdlib/typing.pyi | ||
; custom_typeshed_dir = typings/stdlib/_typeshed ; not a valid typeshed dir | ||
|
||
follow_imports = silent | ||
follow_imports_for_stubs = True | ||
no_site_packages = True | ||
|
||
check_untyped_defs = True | ||
|
||
; show_error_context = True | ||
disable_error_code = no-redef,assignment | ||
|
||
# snippets may re-use the same variable names | ||
allow_redefinition = True | ||
|
||
; warn_return_any = True | ||
; warn_unused_configs = True |
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,22 @@ | ||
{ | ||
"include": [ | ||
"." | ||
], | ||
"typeshedPaths": [ | ||
"./typings" | ||
], | ||
"exclude": [ | ||
".*", | ||
"__*", | ||
"**/typings" | ||
], | ||
"ignore": [ | ||
"**/typings" | ||
], | ||
// "pythonVersion": "3.8", | ||
"pythonPlatform": "Linux", | ||
"verboseOutput": false, | ||
"typeCheckingMode": "basic", | ||
"typeshedPath": "./typings", | ||
"reportMissingModuleSource": "none" | ||
} |
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,3 @@ | ||
# typechecker config files for tests | ||
|
||
The files in this folder are used copied to each check_* and feat_folder to make sure the typechecker tests that are all using the same configuration. |
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,22 @@ | ||
[mypy] | ||
platform = linux | ||
mypy_path = typings | ||
files = *.py | ||
exclude = typings[\\/].* | ||
custom_typing_module = typings/stdlib/typing.pyi | ||
; custom_typeshed_dir = typings/stdlib/_typeshed ; not a valid typeshed dir | ||
|
||
follow_imports = silent | ||
follow_imports_for_stubs = True | ||
no_site_packages = True | ||
|
||
check_untyped_defs = True | ||
|
||
; show_error_context = True | ||
disable_error_code = no-redef,assignment | ||
|
||
# snippets may re-use the same variable names | ||
allow_redefinition = True | ||
|
||
; warn_return_any = True | ||
; warn_unused_configs = True |
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,22 @@ | ||
[mypy] | ||
platform = linux | ||
mypy_path = typings | ||
files = *.py | ||
exclude = typings[\\/].* | ||
custom_typing_module = typings/stdlib/typing.pyi | ||
; custom_typeshed_dir = typings/stdlib/_typeshed ; not a valid typeshed dir | ||
|
||
follow_imports = silent | ||
follow_imports_for_stubs = True | ||
no_site_packages = True | ||
|
||
check_untyped_defs = True | ||
|
||
; show_error_context = True | ||
disable_error_code = no-redef,assignment | ||
|
||
# snippets may re-use the same variable names | ||
allow_redefinition = True | ||
|
||
; warn_return_any = True | ||
; warn_unused_configs = True |
22 changes: 22 additions & 0 deletions
22
tests/quality_tests/check_rp2-nano_connect/pyrightconfig.json
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,22 @@ | ||
{ | ||
"include": [ | ||
"." | ||
], | ||
"typeshedPaths": [ | ||
"./typings" | ||
], | ||
"exclude": [ | ||
".*", | ||
"__*", | ||
"**/typings" | ||
], | ||
"ignore": [ | ||
"**/typings" | ||
], | ||
// "pythonVersion": "3.8", | ||
"pythonPlatform": "Linux", | ||
"verboseOutput": false, | ||
"typeCheckingMode": "basic", | ||
"typeshedPath": "./typings", | ||
"reportMissingModuleSource": "none" | ||
} |
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,22 @@ | ||
[mypy] | ||
platform = linux | ||
mypy_path = typings | ||
files = *.py | ||
exclude = typings[\\/].* | ||
custom_typing_module = typings/stdlib/typing.pyi | ||
; custom_typeshed_dir = typings/stdlib/_typeshed ; not a valid typeshed dir | ||
|
||
follow_imports = silent | ||
follow_imports_for_stubs = True | ||
no_site_packages = True | ||
|
||
check_untyped_defs = True | ||
|
||
; show_error_context = True | ||
disable_error_code = no-redef,assignment | ||
|
||
# snippets may re-use the same variable names | ||
allow_redefinition = True | ||
|
||
; warn_return_any = True | ||
; warn_unused_configs = True |
Oops, something went wrong.