branch: elpa/flycheck
commit 7e739ead004ea30536d6ce34bb019780f22370d7
Author: Eric Berquist <727571+berqu...@users.noreply.github.com>
Commit: GitHub <nore...@github.com>

    ruff: --output-format=text replaced with --output-format=concise (#2078)
    
    This has been deprecated since 0.2.0 and was finally removed in 0.5.0.
---
 flycheck.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flycheck.el b/flycheck.el
index 1a118596a7..7cf79ae8be 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -10848,11 +10848,11 @@ Requires Flake8 3.0 or newer. See URL
 (flycheck-define-checker python-ruff
   "A Python syntax and style checker using Ruff.
 
-See URL `https://beta.ruff.rs/docs/'."
+See URL `https://docs.astral.sh/ruff/'."
   :command ("ruff"
             "check"
             (config-file "--config" flycheck-python-ruff-config)
-            "--output-format=text"
+            "--output-format=concise"
             (option "--stdin-filename" buffer-file-name)
             "-")
   :standard-input t

Reply via email to