Visual Studio Code – How can I format my Python code with autopep8 using VS Code's format on save feature?
I am trying to format my Python code automatically using the format on save feature in vs Code. I have installed the autopep8 package and added the following configuration to my pyproject.toml file: [tool.autopep8] in-place = true aggressive = 2…