Don't warn about missing .py files in VS Code

Our _pb2.py files are available at runtime, and we only need the .pyi
files for editing.
This commit is contained in:
Damien Elmes 2022-03-07 11:54:41 +10:00
parent 8504bd67ed
commit b8ce480f61

View File

@ -9,6 +9,9 @@
"python.analysis.extraPaths": ["./pylib"],
"python.formatting.provider": "black",
"python.linting.mypyEnabled": false,
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingModuleSource": "none"
},
"rust-analyzer.cargo.runBuildScripts": true,
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.files.excludeDirs": [".bazel", "node_modules"],