bad-option-value / E0012#
Message emitted:
Bad option value for %s
Description:
Used when a bad value for an inline option is encountered.
Correct code:
# pylint: disable=missing-module-docstring
print("Hello World")
Problematic code:
# pylint: disable=missing-module-documentation # [bad-option-value]
print("Hello World")
Created by the main checker.