Remove unnnecessary pylint configs from core (#98704)
This commit is contained in:
@@ -254,12 +254,8 @@ INTEGRATION_MANIFEST_SCHEMA = vol.Schema(
|
||||
}
|
||||
)
|
||||
],
|
||||
vol.Required("documentation"): vol.All(
|
||||
vol.Url(), documentation_url # pylint: disable=no-value-for-parameter
|
||||
),
|
||||
vol.Optional(
|
||||
"issue_tracker"
|
||||
): vol.Url(), # pylint: disable=no-value-for-parameter
|
||||
vol.Required("documentation"): vol.All(vol.Url(), documentation_url),
|
||||
vol.Optional("issue_tracker"): vol.Url(),
|
||||
vol.Optional("quality_scale"): vol.In(SUPPORTED_QUALITY_SCALES),
|
||||
vol.Optional("requirements"): [str],
|
||||
vol.Optional("dependencies"): [str],
|
||||
|
||||
@@ -40,7 +40,7 @@ def printc(the_color, *args):
|
||||
|
||||
def validate_requirements_ok():
|
||||
"""Validate requirements, returns True of ok."""
|
||||
# pylint: disable-next=import-error,import-outside-toplevel
|
||||
# pylint: disable-next=import-outside-toplevel
|
||||
from gen_requirements_all import main as req_main
|
||||
|
||||
return req_main(True) == 0
|
||||
|
||||
Reference in New Issue
Block a user