Use mypy as python check command
This commit is contained in:
parent
a4fe9e538b
commit
a7b96bb042
|
@ -1056,7 +1056,11 @@ Set fill column to 88 and enable display in python buffers
|
||||||
(set-fill-column col)
|
(set-fill-column col)
|
||||||
(display-fill-column-indicator-mode +1))
|
(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
|
#+end_src
|
||||||
*** Rust
|
*** Rust
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue