diff options
author | skullY <skullydazed@gmail.com> | 2019-08-22 10:18:52 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-08-31 08:50:25 -0700 |
commit | 95477749629407e2a9e33c6ccf26ecc8b24ab07a (patch) | |
tree | 77749d8b0a0aaa6e7045aa2f12138f005886b463 /docs/cli.md | |
parent | d076234fd115ca7a3e5c0f9418e2b28b80c7ec20 (diff) | |
download | qmk_firmware-95477749629407e2a9e33c6ccf26ecc8b24ab07a.tar.gz qmk_firmware-95477749629407e2a9e33c6ccf26ecc8b24ab07a.zip |
CLI command to format C code
Diffstat (limited to 'docs/cli.md')
-rw-r--r-- | docs/cli.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/cli.md b/docs/cli.md index 1843f42cd..4b8472b19 100644 --- a/docs/cli.md +++ b/docs/cli.md | |||
@@ -36,3 +36,13 @@ qmk compile <configuratorExport.json> | |||
36 | ``` | 36 | ``` |
37 | qmk compile -kb <keyboard_name> -km <keymap_name> | 37 | qmk compile -kb <keyboard_name> -km <keymap_name> |
38 | ``` | 38 | ``` |
39 | |||
40 | ## `qmk cformat` | ||
41 | |||
42 | This command formats C code using clang-format. Run it with no arguments to format all core code, or pass filenames on the command line to run it on specific files. | ||
43 | |||
44 | **Usage**: | ||
45 | |||
46 | ``` | ||
47 | qmk cformat [file1] [file2] [...] [fileN] | ||
48 | ``` | ||