flycheck-prospector

Homepage: https://github.com/chocoelho/flycheck-prospector

Author: Carlos Coelho

Updated:

Summary

Support prospector in flycheck

Commentary

This package adds support for prospector to flycheck. To use it, add
to your init.el:

(require 'flycheck-prospector)
(add-hook 'python-mode-hook 'flycheck-mode)

If you want to use prospector you probably don't want pylint or
flake8. To disable those checkers, add the following to your
init.el:

(add-to-list 'flycheck-disabled-checkers 'python-flake8)
(add-to-list 'flycheck-disabled-checkers 'python-pylint)

Dependencies