Skip to content

Commit ca06d72

Browse files
author
Chris Maunder
committed
added pyrightconfig
1 parent d2cd97c commit ca06d72

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

pyrightconfig.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
// "include": [
3+
// "src"
4+
// ],
5+
6+
"exclude": [
7+
"**/node_modules",
8+
"**/__pycache__",
9+
"**/venv",
10+
"src/experimental",
11+
"src/typestubs"
12+
],
13+
14+
"ignore": [
15+
"src/oldstuff"
16+
],
17+
18+
"defineConstant": {
19+
"DEBUG": true
20+
},
21+
22+
"stubPath": "src/stubs",
23+
24+
"reportMissingImports": "error",
25+
"reportMissingTypeStubs": false,
26+
27+
// "pythonVersion": "3.6",
28+
// "pythonPlatform": "Linux",
29+
30+
// "executionEnvironments": [
31+
// {
32+
// "root": "src/web",
33+
// "pythonVersion": "3.5",
34+
// "pythonPlatform": "Windows",
35+
// "extraPaths": [
36+
// "src/service_libs"
37+
// ],
38+
// "reportMissingImports": "warning"
39+
// },
40+
// {
41+
// "root": "src/sdk",
42+
// "pythonVersion": "3.0",
43+
// "extraPaths": [
44+
// "src/backend"
45+
// ]
46+
// },
47+
// {
48+
// "root": "src/tests",
49+
// "extraPaths": [
50+
// "src/tests/e2e",
51+
// "src/sdk"
52+
// ]
53+
// },
54+
// {
55+
// "root": "src"
56+
// }
57+
// ]
58+
}

0 commit comments

Comments
 (0)