From e4993bd7e26acacfd9aedbc8b26f5ef7355894a6 Mon Sep 17 00:00:00 2001
From: Colin Delahunty <72827203+colin99d@users.noreply.github.com>
Date: Fri, 13 Jan 2023 21:39:51 -0500
Subject: [PATCH] Added ALE (#1857)
Fixes the sub issue I brought up in #1829.
---
README.md | 12 ++++++++++++
1 file changed, 12 insertions(+)
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.