diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-09 13:34:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 13:34:14 -0800 |
commit | 962bc8d9dd413690dbeadeaac971a5389697210f (patch) | |
tree | 02e7c5ebe87f466103901d72740fbf25c9d19a30 /data | |
parent | c550047ba68bd633d35b10d545ff240cf1fc9786 (diff) |
Use the schema to eliminate custom code (#11108)
* use the schema to eliminate custom code
* Update docs/reference_info_json.md
Co-authored-by: Ryan <fauxpark@gmail.com>
* make flake8 happy
* bugfix
* do not overwrite make vars from json
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'data')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index e13771e92a..f76c7fd189 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -25,7 +25,7 @@ }, "processor": { "type": "string", - "enum": ["MK20DX128", "MK20DX256", "MKL26Z64", "STM32F042", "STM32F072", "STM32F103", "STM32F303", "STM32F401", "STM32F411", "at90usb1286", "at90usb646", "atmega16u2", "atmega328p", "atmega32a", "atmega32u2", "atmega32u4", "attiny85", "cortex-m4"] + "enum": ["MK20DX128", "MK20DX256", "MKL26Z64", "STM32F042", "STM32F072", "STM32F103", "STM32F303", "STM32F401", "STM32F411", "at90usb1286", "at90usb646", "atmega16u2", "atmega328p", "atmega32a", "atmega32u2", "atmega32u4", "attiny85", "cortex-m4", "unknown"] }, "bootloader": { "type": "string", |