forked from bentoml/OpenLLM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyrightconfig.json
36 lines (36 loc) · 998 Bytes
/
pyrightconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"useLibraryCodeForTypes": true,
"typeCheckingMode": "strict",
"verboseOutput": true,
"include": [
"openllm-core/src",
"openllm-client/src",
"openllm-python/src"
],
"define": {
"MYPY": true
},
"exclude": [
"cz.py",
"tools",
"examples",
"typings",
"openllm-python/src/openllm/playground/",
"openllm-python/src/openllm/models/",
"openllm-python/src/openllm/__init__.py",
"openllm-python/src/openllm/__main__.py",
"openllm-python/tests",
"openllm-core/src/openllm_core/_typing_compat.py",
"openllm-client/src/openllm_client/pb/**"
],
"pythonVersion": "3.12",
"enableExperimentalFeatures": true,
"reportMissingImports": "warning",
"reportMissingTypeStubs": false,
"reportPrivateUsage": "warning",
"reportUnknownArgumentType": "warning",
"reportUnknownMemberType": "warning",
"reportUnknownVariableType": "warning",
"reportUnsupportedDunderAll": "warning",
"reportWildcardImportFromLibrary": "warning"
}