skip to Main Content

Visual Studio Code – Long lines in python are not getting reformatted in vscode

.vscode/settings.json { "python.linting.pylintEnabled": false, "python.linting.enabled": true, "python.linting.pylintArgs": [ "-d", "C0301" ], "python.testing.unittestArgs": [ "-v", "-s", ".", "-p", "test_*.py" ], "python.testing.pytestEnabled": false, "python.testing.unittestEnabled": true, "[python]": { "editor.defaultFormatter": "ms-python.autopep8" }, // "python.formatting.provider": "none", "python.formatting.provider": "autopep8", "python.formatting.autopep8Args": [ "--max-line-length", "79", "--experimental" ] }…

VIEW QUESTION
Back To Top
Search