diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-06-24 14:54:48 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-06-24 14:54:48 -0500 |
| commit | c2111656a6776d2f85164d0a8e609ae6271c3054 (patch) | |
| tree | b625165ca8d178c19ae38203acc99856a4bc87b3 /docs/source | |
| parent | cae943bd446953aefe4facfa44d7f1f54da19d43 (diff) | |
| download | flake8-c2111656a6776d2f85164d0a8e609ae6271c3054.tar.gz | |
Add descriptions of pycodestyle and mccable
Diffstat (limited to 'docs/source')
| -rw-r--r-- | docs/source/glossary.rst | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst index f3231fc..dd691b6 100644 --- a/docs/source/glossary.rst +++ b/docs/source/glossary.rst @@ -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. |
