PY3.R0022

Useless Option Value

Used when a value for an option that is now deleted from pylint is encountered. You can disable this check if you don't want to cleanup your configuration of old messages.

Noncompliant Code:

Copy
"""'bad-continuation' was removed from pylint in https://github.com/pylint-dev/pylint/pull/3571"""
# pylint: disable=bad-continuation  # [useless-option-value]

Compliant Code:

Copy
"""'bad-continuation' was removed from pylint in https://github.com/pylint-dev/pylint/pull/3571"""

The content on this page is adapted from the Pylint User Guide, Copyright ©2003-2022, Logilab, PyCQA and contributors. All rights reserved. https://pylint.pycqa.org/en/latest/index.html#, and is used under the Python Software Foundation License Version 2. Examples, recipes, and other code in the Pylint documentation are additionally licensed under the Zero Clause BSD License.