diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-06 10:33:30 -0800 |
---|---|---|
committer | Zach White <skullydazed@drpepper.org> | 2021-01-07 21:21:12 -0800 |
commit | ed19198c7891735a5ba3f118f25c608f968f746f (patch) | |
tree | 9ec5cb346f3c8d830e019e084c163d0e170b40d7 /data/schemas | |
parent | b44532aa3dbdce702d662e5b1cf043e461846d8b (diff) | |
download | qmk_firmware-ed19198c7891735a5ba3f118f25c608f968f746f.tar.gz qmk_firmware-ed19198c7891735a5ba3f118f25c608f968f746f.zip |
loosen up the schema to allow any pin format
Diffstat (limited to 'data/schemas')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 9355ee49bd..f250ffd8a9 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -163,8 +163,7 @@ "items": { "oneOf": [ { - "type": "string", - "pattern": "^[A-K]\\d{1,2}$" + "type": "string" }, { "type": "null" @@ -176,15 +175,13 @@ "cols": { "type": "array", "items": { - "type": "string", - "pattern": "^[A-K]\\d{1,2}$" + "type": "string" } }, "rows": { "type": "array", "items": { - "type": "string", - "pattern": "^[A-K]\\d{1,2}$" + "type": "string" } } } |