diff options
Diffstat (limited to 'pyrightconfig.json')
| -rw-r--r-- | pyrightconfig.json | 53 |
1 files changed, 46 insertions, 7 deletions
diff --git a/pyrightconfig.json b/pyrightconfig.json index 56573c75f..5739cd986 100644 --- a/pyrightconfig.json +++ b/pyrightconfig.json @@ -1,9 +1,48 @@ { - "venvPath": "local", - "venv": "py3", - "include": [ - "searx", - "searxng_extra", - "tests" - ] + "venvPath": "local", + "venv": "py3", + "include": [ + "searx", + "searxng_extra", + "tests" + ], + "reportAny" : "information", + "enableTypeIgnoreComments": true, + "reportIgnoreCommentWithoutRule": true, + "reportImplicitStringConcatenation": false, + "reportUninitializedInstanceVariable": false, + "reportUnnecessaryIsInstance": false, + "reportUnreachable": "information", + "reportUnusedCallResult": false, + "executionEnvironments": [ + { + "root": "searx", + "extraPaths": ["."] + }, + { + "root": "searxng_extra", + "extraPaths": ["."], + "reportAny" : false, + "reportUnknownMemberType": false, + "reportUnknownVariableType": false + }, + { + "root": "tests", + "extraPaths": ["."], + "reportAny" : false, + "reportImplicitOverride": false, + "reportMissingParameterType": false, + "reportMissingTypeArgument": false, + "reportMissingTypeStubs": false, + "reportPrivateLocalImportUsage": false, + "reportPrivateUsage": false, + "reportUnannotatedClassAttribute": false, + "reportUnknownArgumentType": false, + "reportUnknownLambdaType": false, + "reportUnknownMemberType": false, + "reportUnknownParameterType": false, + "reportUnknownVariableType": false, + "reportUnusedParameter": false + } + ] } |