It's surprisingly easy to set up.
If you are using el-get
(el-get 'sync 'flycheck)
(require 'python)
(defun tnoda/turn-on-flycheck-mode ()
(flycheck-mode 1))
(add-hook 'python-mode-hook 'tnoda/turn-on-flycheck-mode)
only.
Flycheck 0.20 for checking Python
You can use two of them. If you install only the ones you want to use, flycheck will find them in your PATH and use them, so you don't need to make any settings other than installation.
$ pip install flake8
$ pip install pylint
I tried to use Flymake with Python. If the checker has a PATH, flycheck will search for it and use it, so there is almost no place to set it.
Recommended Posts