Updated settings.json
This commit is contained in:
parent
ce871936d9
commit
25883cb7c8
1 changed files with 17 additions and 15 deletions
32
.vscode/settings.json
vendored
32
.vscode/settings.json
vendored
|
|
@ -1,24 +1,26 @@
|
|||
{
|
||||
"python.pythonPath": "python",
|
||||
// static analysis
|
||||
"python.languageServer": "Pylance",
|
||||
// "python.testing.unittestEnabled": false,
|
||||
// "python.testing.nosetestsEnabled": false,
|
||||
// "python.testing.pytestEnabled": true,
|
||||
"pythonTestExplorer.testFramework": "pytest",
|
||||
"python.formatting.provider": "black",
|
||||
"python.sortImports.path": "isort",
|
||||
"python.sortImports.args": [
|
||||
"--profile=black",
|
||||
],
|
||||
// "[python]": {
|
||||
// "editor.codeActionsOnSave": {
|
||||
// "source.organizeImports": true
|
||||
// }
|
||||
// }
|
||||
"python.analysis.typeCheckingMode": "strict",
|
||||
"python.analysis.autoImportCompletions": false,
|
||||
"python.analysis.diagnosticSeverityOverrides": {
|
||||
"reportPrivateUsage": "information",
|
||||
"reportUntypedNamedTuple": "information",
|
||||
},
|
||||
|
||||
// formating
|
||||
"python.formatting.provider": "black",
|
||||
|
||||
// sorting
|
||||
"python.sortImports.path": "isort",
|
||||
"python.sortImports.args": [
|
||||
"--profile=black",
|
||||
],
|
||||
|
||||
// tests
|
||||
"python.testing.pytestArgs": [
|
||||
"tests"
|
||||
],
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestEnabled": true,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue