|
8 | 8 | "node_modules", |
9 | 9 | "deprecated_javascript_version", |
10 | 10 | "errors_py", |
11 | | - "logs" |
| 11 | + "logs", |
| 12 | + "tests/**" |
12 | 13 | ], |
13 | 14 | "extraPaths": [ |
14 | 15 | ".", |
|
20 | 21 | "./stream" |
21 | 22 | ], |
22 | 23 | "pythonVersion": "3.9", |
23 | | - "pythonPlatform": "Windows", |
24 | | - "typeCheckingMode": "basic", |
| 24 | + "pythonPlatform": "All", |
| 25 | + "typeCheckingMode": "standard", |
25 | 26 | "useLibraryCodeForTypes": true, |
26 | 27 | "autoImportCompletions": true, |
27 | 28 | "stubPath": "", |
28 | 29 |
|
29 | 30 | "reportMissingImports": "error", |
30 | | - "reportMissingTypeStubs": "none", |
31 | 31 | "reportUndefinedVariable": "error", |
32 | 32 | "reportAssertAlwaysTrue": "error", |
33 | 33 | "reportInvalidStringEscapeSequence": "error", |
34 | 34 | "reportInvalidTypeVarUse": "error", |
35 | | - "reportMissingTypeArgument": "none", |
36 | | - "reportPrivateUsage": "none", |
37 | | - "reportUnknownParameterType": "none", |
38 | | - "reportUnknownArgumentType": "none", |
39 | | - "reportUnknownLambdaType": "none", |
40 | | - "reportUnknownVariableType": "none", |
41 | | - "reportUnknownMemberType": "none", |
42 | | - "reportMissingParameterType": "none", |
43 | | - "reportUnnecessaryIsInstance": "none", |
44 | | - "reportUnnecessaryCast": "warning", |
45 | | - "reportUnnecessaryComparison": "warning", |
46 | 35 | "reportConstantRedefinition": "error", |
47 | | - "reportDuplicateImport": "warning", |
| 36 | + "reportGeneralTypeIssues": "error", |
| 37 | + "reportPropertyTypeMismatch": "error", |
| 38 | + "reportFunctionMemberAccess": "error", |
| 39 | + "reportIncompatibleMethodOverride": "error", |
| 40 | + "reportIncompatibleVariableOverride": "error", |
| 41 | + "reportInconsistentConstructor": "error", |
| 42 | + |
48 | 43 | "reportOptionalSubscript": "error", |
49 | 44 | "reportOptionalMemberAccess": "error", |
50 | 45 | "reportOptionalCall": "error", |
51 | 46 | "reportOptionalIterable": "error", |
52 | 47 | "reportOptionalContextManager": "error", |
53 | 48 | "reportOptionalOperand": "error", |
54 | | - "reportTypedDictNotRequiredAccess": "none", |
55 | | - "reportGeneralTypeIssues": "error", |
56 | | - "reportPropertyTypeMismatch": "error", |
57 | | - "reportFunctionMemberAccess": "error", |
58 | | - "reportIncompatibleMethodOverride": "error", |
59 | | - "reportIncompatibleVariableOverride": "error", |
60 | | - "reportInconsistentConstructor": "error" |
| 49 | + |
| 50 | + "reportUnknownParameterType": "warning", |
| 51 | + "reportUnknownArgumentType": "warning", |
| 52 | + "reportUnknownLambdaType": "warning", |
| 53 | + "reportUnknownVariableType": "warning", |
| 54 | + "reportUnknownMemberType": "warning", |
| 55 | + |
| 56 | + "reportMissingParameterType": "warning", |
| 57 | + "reportMissingTypeArgument": "warning", |
| 58 | + "reportMissingTypeStubs": "none", |
| 59 | + |
| 60 | + "reportPrivateUsage": "warning", |
| 61 | + "reportUnnecessaryIsInstance": "warning", |
| 62 | + "reportUnnecessaryCast": "warning", |
| 63 | + "reportUnnecessaryComparison": "warning", |
| 64 | + "reportDuplicateImport": "warning", |
| 65 | + "reportTypedDictNotRequiredAccess": "warning" |
61 | 66 | } |
0 commit comments