diff --git a/README.md b/README.md index bcc2e01146..6c40571ccc 100644 --- a/README.md +++ b/README.md @@ -1256,6 +1256,18 @@ officially supported LSP server for Ruff. However, Ruff is also available as part of the [coc-pyright](https://github.com/fannheyward/coc-pyright) extension for `coc.nvim`. +
+With the ALE plugin for (Neo)Vim. + +```vim +let g:ale_linters = { "python": ["ruff"] } +let g:ale_fixers = { +\ "python": ["black", "ruff"], +\} +``` + +
+
Ruff can also be integrated via efm in just a few lines.