diff options
author | Zach White <skullydazed@gmail.com> | 2021-03-25 04:38:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 22:38:10 +1100 |
commit | 3e60997edba46544557b3a775bdb1538e07c3edf (patch) | |
tree | 165923c2cd6b5eeee150c0285ce8ed9eff44eaee /lib/python/qmk/tests/minimal_info.json | |
parent | a74846a0dbd5efbc7b993918f7f3122e1d620c24 (diff) |
Add a `qmk format-json` command that will format JSON files (#12372)
* Add a command to format json files
* change to work after rebase
* add test for qmk format-json
* add documentation for qmk format-json
* Update lib/python/qmk/cli/format/json.py
Diffstat (limited to 'lib/python/qmk/tests/minimal_info.json')
-rw-r--r-- | lib/python/qmk/tests/minimal_info.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/python/qmk/tests/minimal_info.json b/lib/python/qmk/tests/minimal_info.json new file mode 100644 index 0000000000..b91c23bd3d --- /dev/null +++ b/lib/python/qmk/tests/minimal_info.json @@ -0,0 +1,13 @@ +{ + "keyboard_name": "tester", + "maintainer": "qmk", + "height": 5, + "width": 15, + "layouts": { + "LAYOUT": { + "layout": [ + { "label": "KC_A", "x": 0, "y": 0, "matrix": [0, 0] } + ] + } + } +} |