~ruther/qmk_firmware

ed19198c7891735a5ba3f118f25c608f968f746f — Zach White 4 years ago b44532a
loosen up the schema to allow any pin format
1 files changed, 3 insertions(+), 6 deletions(-)

M data/schemas/keyboard.jsonschema
M data/schemas/keyboard.jsonschema => data/schemas/keyboard.jsonschema +3 -6
@@ 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"
                    }
                }
            }