diff --git a/Tools/_sunrise/Schemas/validate_yml.py b/Tools/_sunrise/Schemas/validate_yml.py index f3a1ff1e9bc..cb28cd4c720 100644 --- a/Tools/_sunrise/Schemas/validate_yml.py +++ b/Tools/_sunrise/Schemas/validate_yml.py @@ -46,7 +46,7 @@ def check_yml(yml_path: str): def filter_specific_keys(content: str) -> dict: result = {} lines = content.splitlines() - key_pattern = re.compile(r'^(name|description|suffix):\s*(.+)') + key_pattern = re.compile(r'^(name|description|suffix|rules):\s*(.+)') for line in lines: match = key_pattern.match(line.strip())