branch: elpa/flycheck
commit 6f85589a3b3583aab597673c6a0907b2032572f7
Author: Per Nordlöw <per.nord...@gmail.com>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    For checker `python-ruff` default `output-format` to `text` instead of 
`concise` which is no longer supported
    
    Verified using ruff version 0.0.291.
---
 flycheck.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flycheck.el b/flycheck.el
index dc1c43c615..10967a27ac 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -10892,7 +10892,7 @@ See URL `https://docs.astral.sh/ruff/'."
   :command ("ruff"
             "check"
             (config-file "--config" flycheck-python-ruff-config)
-            "--output-format=concise"
+            "--output-format=text"
             (option "--stdin-filename" buffer-file-name)
             "-")
   :standard-input t

Reply via email to