summaryrefslogtreecommitdiffstats
path: root/lib/python/qmk/cli/list
Commit message (Collapse)AuthorAgeFilesLines
* Drop bs4 dependency, update docs, minor improvementsErovia2020-02-151-4/+7
|
* Another major refactoring, add documentationErovia2020-02-151-76/+8
| | | | | | Move all useful functions to the qmk module and use the cli subcommand as a wrapper around it. Add both inline comments and documentation.
* Fix output formatErovia2020-02-151-1/+1
|
* Try to figure out revision, drop -rv/--revision argumentErovia2020-02-151-32/+34
|
* Fix help message.Erovia2020-02-151-1/+1
|
* Get all buildable keymaps for each revisionErovia2020-02-151-27/+32
| | | | | | | The command now return all keymaps that's buildable for a keyboard/revision. If the base directory of a keyboard does not contain a 'rules.mk' file, nothing is returned. If the base directory contains a 'keymaps' directory, those keycaps will be returned for every revision.
* Major update to work better with revisionsErovia2020-02-151-24/+21
| | | | Find the community keymaps supported by each revision.
* CLI: add support for list_keymapsErovia2020-02-152-0/+85
| | | | List all the available keymaps for a given keyboard
* Add flake8 to our test suite and fix all errors (#7379)skullydazed2019-11-201-13/+13
| | | | | | * Add flake8 to our test suite and fix all errors * Add some documentation
* Small CLI cleanupsskullY2019-11-121-0/+1
| | | | | | | * yapf changes * Fix the cformat test * Make the normpath test work when run from / * `qmk config`: Mark `--read-only` as arg_only
* [CLI] Add `qmk list_keyboards` (#6927)Dan McClain2019-10-072-0/+27
`list_keyboards` replicates the `make list-keyboards` by globbing for all paths that include `rules.mk` and then removing the paths that include `keymaps`. This basis of this cli command could be reused in the future as a util, but is not done so here since this would be the only place that would use it currently Resolves #6911