mirror of
https://github.com/home-assistant/core.git
synced 2025-12-26 22:18:40 +00:00
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],
|
||||
|
||||
Reference in New Issue
Block a user