diff --git a/core/pyproject.toml b/core/pyproject.toml index 5911e885..efc5f389 100644 --- a/core/pyproject.toml +++ b/core/pyproject.toml @@ -104,6 +104,16 @@ init_typed = false typeCheckingMode = "off" reportUndefinedVariable = "error" reportMissingImports = "none" +reportMissingTypeStubs = false +reportUnknownVariableType = false +reportUnknownArgumentType = false +reportUnknownLambdaType = false +reportUnknownMemberType = false +reportUnknownParameterType = false +reportUntypedFunctionDecorator = false +reportMissingTypeArgument = false +reportPrivateUsage = false +reportPrivateImportUsage = false [tool.fawltydeps] ignore_unused = [ diff --git a/plugin/pyproject.toml b/plugin/pyproject.toml index f8c6b95c..a7e9a182 100644 --- a/plugin/pyproject.toml +++ b/plugin/pyproject.toml @@ -107,3 +107,13 @@ output_format = "human_detailed" typeCheckingMode = "off" reportUndefinedVariable = "error" reportMissingImports = "none" +reportMissingTypeStubs = false +reportUnknownVariableType = false +reportUnknownArgumentType = false +reportUnknownLambdaType = false +reportUnknownMemberType = false +reportUnknownParameterType = false +reportUntypedFunctionDecorator = false +reportMissingTypeArgument = false +reportPrivateUsage = false +reportPrivateImportUsage = false diff --git a/pyrightconfig.json b/pyrightconfig.json deleted file mode 100644 index 86c8d980..00000000 --- a/pyrightconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "reportMissingTypeStubs": false, - "reportUnknownVariableType": false, - "reportUnknownArgumentType": false, - "reportUnknownLambdaType": false, - "reportUnknownMemberType": false, - "reportUnknownParameterType": false, - "reportUntypedFunctionDecorator": false, - "reportMissingTypeArgument": false, - "reportPrivateUsage": false, - "reportPrivateImportUsage": false, - "typeCheckingMode": "strict" -}