Add JSON schema for manifest.json (#128560)

This commit is contained in:
Sid
2024-10-26 02:10:58 +02:00
committed by GitHub
parent 737d1aac7c
commit 5dd4b77270
3 changed files with 407 additions and 2 deletions

View File

@ -6,5 +6,13 @@
// https://code.visualstudio.com/docs/python/testing#_pytest-configuration-settings
"python.testing.pytestEnabled": false,
// https://code.visualstudio.com/docs/python/linting#_general-settings
"pylint.importStrategy": "fromEnvironment"
"pylint.importStrategy": "fromEnvironment",
"json.schemas": [
{
"fileMatch": [
"homeassistant/components/*/manifest.json"
],
"url": "./script/json_schemas/manifest_schema.json"
}
]
}