diff options
author | Joel Challis <git@zvecr.com> | 2023-10-30 00:49:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 00:49:56 +0000 |
commit | 17c3182b1cc98adb5385c7c5223c775fce4d4dd9 (patch) | |
tree | 55cb44827a07e02b0051e7d5332c6447197b5412 /data/schemas | |
parent | 559450a099539773e65adf4ab8c2e485344b7885 (diff) |
Remove use of broken split.main (#22363)
Diffstat (limited to 'data/schemas')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 540ce4e42a..20216a7f86 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -681,10 +681,6 @@ } } }, - "main": { - "type": "string", - "enum": ["eeprom", "left", "matrix_grid", "pin", "right"] - }, "soft_serial_pin": {"$ref": "qmk.definitions.v1#/mcu_pin"}, "soft_serial_speed": { "type": "integer", @@ -735,6 +731,11 @@ "polling_interval": {"$ref": "qmk.definitions.v1#/unsigned_int"}, "timeout": {"$ref": "qmk.definitions.v1#/unsigned_int"} } + }, + "main": { + "type": "string", + "enum": ["eeprom", "left", "matrix_grid", "pin", "right"], + "$comment": "Deprecated: use config.h options for now" } } }, |