unknown-option-value / W0012#

Message emitted:

Unknown option value for '%s', expected a valid pylint message and got '%s'

Description:

Used when an unknown value is encountered for an option.

Correct code:

# pylint: disable=missing-docstring

Problematic code:

# pylint: disable=missnig-docstring  # [unknown-option-value]

Created by the main checker.