Skip to content

Commit f395d32

Browse files
committed
fix(data/.schema): no uppercase letters in aliases
1 parent f18b94b commit f395d32

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

data/.schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"description": "An array of aliases for the magic word",
1111
"type": "array",
1212
"items": {
13-
"type": "string"
13+
"type": "string",
14+
"pattern": "^[^A-Z]+$"
1415
},
1516
"minItems": 1,
1617
"uniqueItems": true

data/signatures.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@
700700
},
701701
{
702702
"aliases": [
703-
"#FORMAL"
703+
"#formal"
704704
],
705705
"signatures": [
706706
[

0 commit comments

Comments
 (0)