-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Formatting
Code formatting is supported using either one of yapf or autopep8.
The default code format provider is autopep8.
Paths
All samples provided here are for windows.
However Mac/Linux paths are also supported.
You can configure the format provider by changing a setting in the User or Workspace settings file as follows:
"python.formatting.provider": "autopep8"
Installing autopep8
pip install pep8
pip install --upgrade autopep8
Custom Path This is generally unnecessary. As the Extension will resolve the path to the formatter based on Python executable being used or configured in python.pythonPath of settings.json. If this cannot be found, then the formatter will be resolved based on the current environment Path settings.
If this is not the case or you wish to use another version of autopep8, all you need to do is configure the path as follows either in the User or Workspace settings file:
"python.formatting.autopep8Path": "c:/path/autopep8.exe"
You can configure the format provider by changing a setting in the User or Workspace settings file as follows:
"python.formatting.provider": "yapf"
Custom Path This is generally unnecessary. As the Extension will resolve the path to the formatter based on Python executable being used or configured in python.pythonPath of settings.json. If this cannot be found, then the formatter will be resolved based on the current environment Path settings.
If this is not the case or you wish to use another version of yapf, all you need to do is configure the path as follows either in the User or Workspace settings file:
"python.formatting.yapfPath": "c:/yapfPath/yapf.exe"
Custom arguments to Yapf Custom arguments can be passed into yaps by configuring the settings in the User or Workspace settings as follows:
"python.formatting.yapfArgs": ["--style", "{based_on_style: chromium, indent_width: 20}"]
Installing Yapf pip install yapf