// https://code.visualstudio.com/docs/getstarted/settings { "folders": [ { "path": "." } ], "settings": { "editor.formatOnSave": true, "python.defaultInterpreterPath": ".venv/bin/python3", "[python]": { "editor.codeActionsOnSave": { "source.organizeImports": true }, "editor.defaultFormatter": "ms-python.black-formatter" }, }, "extensions": { "recommendations": [ "dchanco.vsc-invoke", "ms-python.black-formatter", "ms-python.isort", "ms-python.pylint", "ms-python.python", "ms-python.vscode-pylance", "ms-python.mypy-type-checker", ] } }