Flycheck checker for python ruff linter that supports error explanations.
M-x package-install flycheck-python-ruff
M-x package-install-file
Add the following lines to your config
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-python-ruff-setup))
If you have use-package
installed
(use-package flycheck-python-ruff
:ensure t
:hook ((python-mode python-ts-mode) . flycheck-python-ruff-setup))
Pull requests are welcomed.