21 lines
No EOL
603 B
JSON
21 lines
No EOL
603 B
JSON
{
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.languageServer": "Pylance",
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
},
|
|
"git.closeDiffOnOperation": true,
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
"python.testing.pytestArgs": [
|
|
"test"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
} |