Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/pyrightconfig.json
4052 views
1
{
2
"include": [
3
"src/sage"
4
],
5
"executionEnvironments": [
6
{
7
"root": "src"
8
}
9
],
10
"pythonVersion": "3.11",
11
"exclude": ["venv"],
12
"venvPath": "./venv/",
13
"venv": "./",
14
15
"reportGeneralTypeIssues": "warning",
16
"reportUnboundVariable": "warning",
17
"reportDuplicateImport": "error",
18
"reportOptionalMemberAccess": "warning",
19
"reportOptionalCall": "warning",
20
"reportOptionalSubscript": "warning",
21
"reportOptionalIterable": "warning",
22
"reportUndefinedVariable": "warning",
23
"reportOptionalOperand": "warning",
24
"reportMissingImports": "warning",
25
}
26
27