diff options
| author | tslil clingman <tslil@posteo.de> | 2025-07-01 10:20:49 +0100 |
|---|---|---|
| committer | tslil clingman <tslil@posteo.de> | 2025-07-01 10:20:49 +0100 |
| commit | edc05ff2151169d79f3ff9a2d25005a0f6589373 (patch) | |
| tree | 8ae31eab25b7dcd21f2fd54f9fbef9a656bc096c /emacs | |
| parent | 87622be5f2a5122ada9db6ff1a133a605c58b5d7 (diff) | |
[emacs] back to lazy-ruff because it lints
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/inits/20-programming.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el index 20d6fc4..89dc13c 100644 --- a/emacs/inits/20-programming.el +++ b/emacs/inits/20-programming.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2025-06-27 20h06 BST (8dae3a36)> +;; Time-stamp: <2025-07-01 10h19 BST (anker)> ;; ----------------------------------------------------------------------------- ;; General setup @@ -197,10 +197,11 @@ ;; ----------------------------------------------------------------------------- ;; Python -(use-package ruff-format - :defer - :ensure - :commands ruff-format-on-save-mode) +(use-package lazy-ruff + :ensure t + :config + (lazy-ruff-mode-global-toggle t) + (setq lazy-ruff-check-command "ruff check --fix -s --select I")) (use-package highlight-indent-guides :ensure |
