diff --git a/README.md b/README.md index f4b0db4..9924563 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,14 @@ After changing a linter, you must restart Sublime Text. The default formatter is `autopep8`. The possible formatters are: +| Name | Setting | Note | +|:---------------|:--------|:-----| +| autopep8 | `pylsp.plugins.autopep8.enabled` | | +| black | `pylsp.plugins.pylsp_black.enabled` | When enabling also make sure that `autopep8` and `yapf` are disabled. | +| ruff | `pylsp.plugins.ruff.formatEnabled` | Make sure to also enable `pylsp.plugins.ruff.enabled` and disable other formatters and linters. | +| yapf | `pylsp.plugins.yapf.enabled` | | + +- ruff (`"pylsp.plugins.ruff.formatEnabled"` in the settings) - yapf (`"pylsp.plugins.yapf.enabled"` in the settings) - autopep8 (`"pylsp.plugins.autopep8.enabled"` in the settings) - black (`"pylsp.plugins.pylsp_black.enabled"` in the settings. When enabling also make sure that `autopep8` and `yapf` are disabled.)