Skip to content

Commit 25883cb

Browse files
committed
Updated settings.json
1 parent ce87193 commit 25883cb

1 file changed

Lines changed: 17 additions & 15 deletions

File tree

.vscode/settings.json

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
{
2-
"python.pythonPath": "python",
2+
// static analysis
33
"python.languageServer": "Pylance",
4-
// "python.testing.unittestEnabled": false,
5-
// "python.testing.nosetestsEnabled": false,
6-
// "python.testing.pytestEnabled": true,
7-
"pythonTestExplorer.testFramework": "pytest",
8-
"python.formatting.provider": "black",
9-
"python.sortImports.path": "isort",
10-
"python.sortImports.args": [
11-
"--profile=black",
12-
],
13-
// "[python]": {
14-
// "editor.codeActionsOnSave": {
15-
// "source.organizeImports": true
16-
// }
17-
// }
184
"python.analysis.typeCheckingMode": "strict",
195
"python.analysis.autoImportCompletions": false,
206
"python.analysis.diagnosticSeverityOverrides": {
217
"reportPrivateUsage": "information",
228
"reportUntypedNamedTuple": "information",
239
},
10+
11+
// formating
12+
"python.formatting.provider": "black",
13+
14+
// sorting
15+
"python.sortImports.path": "isort",
16+
"python.sortImports.args": [
17+
"--profile=black",
18+
],
19+
20+
// tests
21+
"python.testing.pytestArgs": [
22+
"tests"
23+
],
24+
"python.testing.unittestEnabled": false,
25+
"python.testing.pytestEnabled": true,
2426
}

0 commit comments

Comments
 (0)