1
0
Fork 0

python3//emacs: fix linter breaking.

This commit is contained in:
Kevin Baensch 2020-07-01 14:45:32 +02:00
parent 6c6d1d1b25
commit 8cf00bed0b
Signed by: derped
GPG Key ID: C0F1D326C7626543
2 changed files with 3 additions and 3 deletions

View File

@ -29,8 +29,8 @@ mkIf (elem "emacs::elpy" config.machine.pkgs) {
;; manually set what python-mypy is and configure it to ignore 3rd party imports ;; manually set what python-mypy is and configure it to ignore 3rd party imports
(setq elpy-modules (delq 'elpy-module-flymake elpy-modules)) (setq elpy-modules (delq 'elpy-module-flymake elpy-modules))
(setq-default flycheck-checker 'python-pylint) (setq-default flycheck-checker 'python-pylint)
(flycheck-add-next-checker 'python-pylint 'python-mypy t) (flycheck-add-next-checker 'python-pylint 'python-flake8 t)
(flycheck-add-next-checker 'python-mypy 'python-flake8 t)''} ;; (flycheck-add-next-checker 'python-mypy 'python-flake8 t)''}
''; '';
}; };
} }

View File

@ -26,7 +26,7 @@ in {
pyflakes pyflakes
pygame pygame_sdl2 pygame pygame_sdl2
pylama pylama
pylint pylint toml
pyopengl pyopengl
pyproj pyproj
pytest pytest