~ruther/qmk_firmware

82007aa03a93ba77e54f4660c80ef3749630de0c — Zach White 4 years ago e2e793c
Revert "loosen up the schema to allow any pin format"

This reverts commit e41762be64c170f42ab3f8aa6b7e3078e5895e92.
1 files changed, 6 insertions(+), 3 deletions(-)

M data/schemas/keyboard.jsonschema
M data/schemas/keyboard.jsonschema => data/schemas/keyboard.jsonschema +6 -3
@@ 163,7 163,8 @@
                        "items": {
                            "oneOf": [
                                {
                                    "type": "string"
                                    "type": "string",
                                    "pattern": "^[A-K]\\d{1,2}$"
                                },
                                {
                                    "type": "null"


@@ 175,13 176,15 @@
                "cols": {
                    "type": "array",
                    "items": {
                        "type": "string"
                        "type": "string",
                        "pattern": "^[A-K]\\d{1,2}$"
                    }
                },
                "rows": {
                    "type": "array",
                    "items": {
                        "type": "string"
                        "type": "string",
                        "pattern": "^[A-K]\\d{1,2}$"
                    }
                }
            }