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
2010-08-12 15:31:29 +02:00
bin fixed outputs 2010-08-12 15:02:26 +02:00
flake8 skipping lines that end with #noqa 2010-08-12 15:31:29 +02:00
LICENSE initial commit 2010-08-12 14:40:53 +02:00
README fixed outputs 2010-08-12 15:02:26 +02:00
setup.py fixed outputs 2010-08-12 15:02:26 +02:00

======
Flake8
======

Flake8 is just a merge of the PyFlakes and the pep8 projects into one single
script.

It runs both tests by launching the single 'flake8' script, but ignores pep8
options and just uses its defaults.

It also adds a few features:

- lines that contains a "# NOQA" comment at the end will not issue a warning
- merging pep8 and pyflakes options
- more things to come..

Original projects:

- pep8: http://github.com/jcrocholl/pep8/
- PyFlakes: http://divmod.org/trac/wiki/DivmodPyflakes