20 lines
530 B
JSON
20 lines
530 B
JSON
{
|
|
// "python.defaultInterpreterPath": "venv3/bin/python",
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackArgs": [
|
|
"--config",
|
|
"black.toml"
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"python.sortImports.args": [
|
|
"--profile=black",
|
|
],
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"python.linting.pylintEnabled": false,
|
|
// "python.linting.flake8Enabled": true,
|
|
"python.linting.enabled": true
|
|
} |