Skip to content

Commit 828de3a

Browse files
committed
tooling: Move Pylance config to .vscode/settings.json for local use.
1 parent c68bf24 commit 828de3a

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,6 @@
5757
},
5858

5959
"python.defaultInterpreterPath": "/usr/local/bin/python",
60-
"python.languageServer": "Pylance",
61-
"python.analysis.typeCheckingMode": "basic",
62-
"python.analysis.extraPaths": ["lib"],
63-
"python.analysis.diagnosticSeverityOverrides": {
64-
"reportMissingModuleSource": "none",
65-
"reportWildcardImportFromLibrary": "none",
66-
"reportGeneralTypeIssues": "warning"
67-
},
6860
"python.testing.pytestEnabled": true,
6961
"python.testing.pytestArgs": ["-v", "-k", "mock"],
7062

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"python.languageServer": "Pylance",
3+
"python.analysis.typeCheckingMode": "basic",
4+
"python.analysis.extraPaths": ["lib"],
5+
"python.analysis.diagnosticSeverityOverrides": {
6+
"reportMissingModuleSource": "none",
7+
"reportWildcardImportFromLibrary": "none",
8+
"reportGeneralTypeIssues": "warning"
9+
}
10+
}

0 commit comments

Comments
 (0)