Add descriptions of pycodestyle and mccable

This commit is contained in:
Ian Cordasco 2016-06-24 14:54:48 -05:00
parent cae943bd44
commit c2111656a6
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

View file

@ -41,6 +41,16 @@
errors.
pyflakes
The project |Flake8| depends upon to lint files (check for unused
The project |Flake8| depends on to lint files (check for unused
imports, variables, etc.). This uses the ``F`` :term:`class` of
:term:`error code`\ s reported by |Flake8|.
pycodestyle
The project |Flake8| depends on to provide style enforcement.
pycodestyle implements :term:`check`\ s for :pep:`8`. This uses the
``E`` and ``W`` :term:`class`\ es of :term:`error code`\ s.
mccabe
The project |Flake8| depends on to calculate the McCabe complexity
of a unit of code (e.g., a function). This uses the ``C``
:term:`class` of :term`error code`\ s.