Metadata-Version: 2.0
Name: flake8-respect-noqa
Version: 0.1
Summary: Always ignore #noqa lines with flake8.
Home-page: https://github.com/spookylukey/flake8-respect-noqa
Author: Luke Plant
Author-email: L.Plant.98@cantab.net
License: MIT
Keywords: flake8 noqa pep8
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: flake8 (>=2.4.1)

Flake8 respect NOQA
===================

By default, flake8 ignores ``# NOQA`` directives for some PEP8 errors.
This flake8 plugin makes it respect them.

Installation
------------

Simply::

  $ pip install flake8-respect-noqa


Usage
-----

It is enabled by default as soon as it is installed. Check that flake8 finds it::


  $ flake8 --version

  2.4.1 (pep8: 1.5.7, flake8-respect-noqa: 0.1, mccabe: 0.3.1, pyflakes: 0.8.1) CPython 2.7.6 on Linux

However, to get it to work, you currently need to run flake8 with ``--jobs=`` or
put ``jobs = 1`` in your ``[flake8]`` configuration, otherwise flake8 uses its own reporter,
which trumps the customizations this extension attempts to make.

See https://gitlab.com/pycqa/flake8/issues/66


