diff options
author | Joel Challis <git@zvecr.com> | 2024-02-01 15:45:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-01 15:45:58 +0000 |
commit | 3a13c2120a9e3d897e05923c68efa542f3b3efc7 (patch) | |
tree | 49a92e5ddadbeb5e052a7f50c11cdce69adf3f20 /data/schemas/keyboard.jsonschema | |
parent | 79020519b4393c8a4f37c9b5fbd214a0f71192d4 (diff) |
Ensure LTO is enabled as a `info.json` build config option (#22932)
* feature.lto -> build.lto
* keymaps too
Diffstat (limited to 'data/schemas/keyboard.jsonschema')
-rw-r--r-- | data/schemas/keyboard.jsonschema | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index 4836cf1fca..d953079659 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -314,8 +314,8 @@ }, "features": { "$ref": "qmk.definitions.v1#/boolean_array", - "propertyNames": { "$ref": "qmk.definitions.v1#/snake_case" } - + "propertyNames": { "$ref": "qmk.definitions.v1#/snake_case" }, + "not": { "required": [ "lto" ] } }, "indicators": { "type": "object", |