We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53eca65 commit 46d5873Copy full SHA for 46d5873
1 file changed
bin/generate_component_manifest_files.py
@@ -32,7 +32,14 @@ def generate_init_module_content() -> str:
32
33
34
def generate_json_schema():
35
- """Generate JSON schema from the YAML file for schemastore.org registration."""
+ """Generate JSON schema from the YAML file for schemastore.org registration.
36
+
37
+ When published to schemastore.org, a number of IDEs and libraries
38
+ automatically apply the JSON Schema validation features such as:
39
+ - auto-complete for keys and enums
40
+ - hover-tooltips for descriptions and examples
41
+ - linting squiggles for validation errors
42
+ """
43
yaml_file_path = f"{LOCAL_YAML_DIR_PATH}/declarative_component_schema.yaml"
44
json_file_path = f"{LOCAL_YAML_DIR_PATH}/generated/declarative_component_schema.json"
45
0 commit comments