]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
CLI command to format C code
authorskullY <skullydazed@gmail.com>
Thu, 22 Aug 2019 17:18:52 +0000 (10:18 -0700)
committerskullydazed <skullydazed@users.noreply.github.com>
Sat, 31 Aug 2019 15:50:25 +0000 (08:50 -0700)
docs/cli.md
lib/python/qmk/cli/cformat.py [new file with mode: 0644]

index 1843f42cd1e31eb98a93f3f3e7f5885f0280e59f..4b8472b19edaf402e80283cfe4f8bcf7c5fe8109 100644 (file)
@@ -36,3 +36,13 @@ qmk compile <configuratorExport.json>
 ```
 qmk compile -kb <keyboard_name> -km <keymap_name>
 ```
+
+## `qmk cformat`
+
+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.
+
+**Usage**:
+
+```
+qmk cformat [file1] [file2] [...] [fileN]
+```
diff --git a/lib/python/qmk/cli/cformat.py b/lib/python/qmk/cli/cformat.py
new file mode 100644 (file)
index 0000000..f7020f4
--- /dev/null
@@ -0,0 +1,27 @@
+"""Format C code according to QMK's style.
+"""
+import os
+import subprocess
+
+from milc import cli
+
+
+@cli.entrypoint("Format C code according to QMK's style.")
+def main(cli):
+    """Format C code according to QMK's style.
+    """
+    clang_format = ['clang-format', '-i']
+    code_files = []
+    for dir in ['drivers', 'quantum', 'tests', 'tmk_core']:
+        for dirpath, dirnames, filenames in os.walk(dir):
+            if 'tmk_core/protocol/usb_hid' in dirpath:
+                continue
+            for name in filenames:
+                if name.endswith('.c') or name.endswith('.h') or name.endswith('.cpp'):
+                    code_files.append(os.path.join(dirpath, name))
+
+    try:
+        subprocess.run(clang_format + code_files, check=True)
+        cli.log.info('Successfully formatted the C code.')
+    except subprocess.CalledProcessError:
+        cli.log.error('Error formatting C code!')