ENH update python checkers

This commit is contained in:
Nathan Dwarshuis 2020-05-26 14:23:10 -04:00
parent 95093366f7
commit edaced23da
1 changed files with 6 additions and 3 deletions

View File

@ -772,9 +772,12 @@ Anaconda (not related to the Python/R distribution?) is much lighter and easier
(python-mode . pyenv-mode)
(inferior-python-mode . company-mode)
(inferior-python-mode . nd/init-anaconda-company))
:config (setq indent-tabs-mode nil
python-shell-interpreter "ipython"
python-shell-interpreter-args "-i --simple-prompt --quiet --no-banner"))
:config
(progn
(setq indent-tabs-mode nil
python-shell-interpreter "ipython"
python-shell-interpreter-args "-i --simple-prompt --quiet --no-banner")
(flycheck-add-next-checker 'python-flake8 'python-pylint)))
(use-package anaconda-mode
:straight t