mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
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:
parent
8504bd67ed
commit
b8ce480f61
1 changed files with 3 additions and 0 deletions
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -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"],
|
||||
|
|
Loading…
Reference in a new issue