Run isort on save

This commit is contained in:
Patrick Neff 2020-08-06 17:43:48 +02:00
parent 46681e1a6c
commit 58dc320048
1 changed files with 6 additions and 1 deletions

View File

@ -2,5 +2,10 @@
"python.linting.flake8Enabled": true, "python.linting.flake8Enabled": true,
"python.linting.enabled": true, "python.linting.enabled": true,
"python.linting.pylintEnabled": false, "python.linting.pylintEnabled": false,
"python.formatting.provider": "yapf" "python.formatting.provider": "yapf",
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
} }