Use mypy as python check command

This commit is contained in:
Evie Litherland-Smith 2024-01-24 10:23:24 +00:00
parent a4fe9e538b
commit a7b96bb042

View file

@ -1056,7 +1056,11 @@ Set fill column to 88 and enable display in python buffers
(set-fill-column col)
(display-fill-column-indicator-mode +1))
(add-hook 'python-base-mode-hook (lambda () (my/enable-fill-column 88)))
(use-package python
:custom
(python-check-command "mypy")
:config
(add-hook 'python-base-mode-hook (lambda () (my/enable-fill-column 88))))
#+end_src
*** Rust
#+begin_src emacs-lisp