{ "python.linting.enabled": true, "python.linting.flake8Enabled": true, "python.linting.pylintEnabled": false, "python.linting.flake8Path": "${workspaceFolder}/.venv/bin/flake8", "python.testing.pytestArgs": [ "tests" ], "python.testing.pytestEnabled": true, "python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest", "editor.formatOnSave": true, "python.formatting.provider": "none", "python.formatting.blackPath": "${workspaceFolder}/.venv/bin/black", "python.formatting.blackArgs": [ "--line-length", "120", "--safe" ], "python.linting.mypyEnabled": true, "python.linting.mypyPath": "${workspaceFolder}/.venv/bin/mypy", "isort.args": [ "--force-single-line-imports", "--profile", "black" ], "files.trimTrailingWhitespace": true, "json.format.enable": true, "files.insertFinalNewline": true, "nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix", "[python]": { "editor.defaultFormatter": "ms-python.black-formatter" }, }