diff --git a/.vscode/settings.json b/.vscode/settings.json index fba148f3ce7..bd803cd8d52 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,10 +3,15 @@ 120 ], "editor.formatOnSave": true, - "python.formatting.provider": "black", - "python.linting.enabled": true, - "python.linting.flake8Enabled": true, - "python.linting.flake8Args": [ + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter", + "editor.formatOnSave": true + }, + "black-formatter.args": [ + "--line-length", + "120" + ], + "flake8.args": [ "--config=setup.cfg" ], "python.testing.unittestEnabled": false,