Files
sergiuToporjinschi 32538a66b0 .
2022-01-31 17:29:25 +02:00

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
}