flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code. https://flake8.pycqa.org
Find a file
Ian Cordasco 24d2689a05 Distinguish check types via plugin type manager
Flake8 and pep8 has historically supported three types of checks:

- Plugins that accept the physical line
- Plugins that accept the logical line
- Plugins that accept the AST tree

The logical place to make this distinction is on the Checkers plugin
type manager class. This adds the foundation for finding plugins that
fall into each class.
2016-02-23 23:20:34 -06:00
docs Add doc8 linting 2016-02-23 14:42:09 -06:00
flake8 Distinguish check types via plugin type manager 2016-02-23 23:20:34 -06:00
tests Distinguish check types via plugin type manager 2016-02-23 23:20:34 -06:00
.gitignore Start creating documentation 2016-01-19 07:19:16 -06:00
.pylintrc Fix our evaluation formula 2016-02-19 15:30:54 -06:00
DESIGN.rst Update design document 2016-01-24 15:16:18 -06:00
setup.cfg Add handling and decision making for select and ignore 2016-02-02 20:48:26 -06:00
setup.py Be consistent in setup.py 2016-02-19 18:59:48 -06:00
tox.ini Set the maximum complexity for mccabe 2016-02-23 17:08:54 -06:00