How to disable a pep8 error in a specific file?

PythonPep8

Python Problem Overview


I tried with

#:PEP8 -E223

or

# pep8: disable=E223

I thought the second would work but doesn't seems to work.

Do you have an idea how I can handle this ?

Python Solutions


Solution 1 - Python

As far as I know, you can't. You can disable errors or warnings user wide, or per project. See the documentation.

Instead, you can use the # noqa comment at the end of a line, to skip that particular line (see patch 136). Of course, that would skip all PEP8 errors.

The main author argues against source file noise, so they suggested # pep8 comments don't get included.


Note that there is also nopep8, which is the equivalent. noqa (which stands for No Quality Assurance was added in version 1.4.1 to support people running pyflakes next to pep8.

Solution 2 - Python

Try putting # nopep8 at the end of the line (after two spaces). So if the line of code is:

h=1+2+3+4+5+6+func( "hello","world")

then to ignore the copious pep8 errors for that line it becomes:

h=1+2+3+4+5+6+func( "hello","world")  # nopep8

Solution 3 - Python

You can use --ignore flag to disable the error you mentioned above

pep8 --ignore=E223 file_name.py

for multiple errors

pep8 --ignore=E223,E501 file_name.py

For more in depth knowledge of other flags you can scan through http://pep8.readthedocs.org/en/latest/intro.html

Solution 4 - Python

Let me add something that was probably introduced after all the previous answers were posted.

If you use Flake8, you can ignore a specific violation raised in a specific line, by adding

# noqa: F401

at the end of the line, where F401 here is an example of an error code. For a list of all violations code, see http://flake8.pycqa.org/en/3.5.0/user/error-codes.html and https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes

You can also ignore all violations in an entire file by adding

# flake8: noqa

anywhere in the file.

Reference: http://flake8.pycqa.org/en/3.5.0/user/violations.html

Solution 5 - Python

You can do that using Flake8 together with https://github.com/jayvdb/flake8-putty

Solution 6 - Python

If you use Flake8 3.7.0+, you can ignore specific warnings for entire files using the --per-file-ignores option.

Command-line usage:

flake8 --per-file-ignores='project/__init__.py:F401,F403 setup.py:E121'

This can also be specified in a config file:

[flake8]
per-file-ignores =
    __init__.py: F401,F403
    setup.py: E121
    other/*: W9

Solution 7 - Python

You can do that with, for example, your setup configuration file (setup.cfg):

[tool:pytest]
pep8ignore =
    *.py E501 W503
    api.py E402                <=============== HERE
    doc/* ALL
pep8maxlinelength = 120
flakes-ignore =
    UnusedImport
filterwarnings =
  ignore::DeprecationWarning

Solution 8 - Python

In the IDE of LiClipse, you can add --ignore=E501 in Code Analysis from Preference.

If anyone uses Eclipse like IDE, this is the convenient way to do it.

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionFlowsView Question on Stackoverflow
Solution 1 - Pythonuser707650View Answer on Stackoverflow
Solution 2 - PythonAlejandroView Answer on Stackoverflow
Solution 3 - PythonShreyView Answer on Stackoverflow
Solution 4 - PythonAlessandro CosentinoView Answer on Stackoverflow
Solution 5 - PythonFedericoView Answer on Stackoverflow
Solution 6 - PythonEugene YarmashView Answer on Stackoverflow
Solution 7 - PythonGera ZenobiView Answer on Stackoverflow
Solution 8 - PythonWon JackView Answer on Stackoverflow