mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-25 05:11:09 +08:00
17 lines
663 B
JSON
17 lines
663 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
|
|
"typeshedPath": ".",
|
|
"include": [
|
|
"test_cases",
|
|
],
|
|
"typeCheckingMode": "strict",
|
|
"reportPropertyTypeMismatch": "error",
|
|
"reportUnnecessaryTypeIgnoreComment": "error",
|
|
"reportMissingModuleSource": "none",
|
|
"reportPrivateUsage": "none",
|
|
// isinstance checks are still needed when validating inputs outside of typeshed's control
|
|
"reportUnnecessaryIsInstance": "none",
|
|
// The name of the self/cls parameter is out of typeshed's control.
|
|
"reportSelfClsParameterName": "none",
|
|
}
|