summaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-22 13:33:34 -0700
committerFlorian Didron <fdidron@users.noreply.github.com>2019-09-26 10:08:39 +0900
commit128bde1be1885c2d479c5384e25ec3f2da2a6cbb (patch)
tree496a3e7b5cbbdb73ad09ff0886b8c0b2d1ffbe37 /lib/python
parentffca0ecd0a847e33a9215b5fd33075511b49a787 (diff)
readability enhancements
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/cli/cformat.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/cformat.py b/lib/python/qmk/cli/cformat.py
index 0c209247d9..91e650368b 100644
--- a/lib/python/qmk/cli/cformat.py
+++ b/lib/python/qmk/cli/cformat.py
@@ -12,18 +12,23 @@ def main(cli):
"""Format C code according to QMK's style.
"""
clang_format = ['clang-format', '-i']
+
+ # Find the list of files to format
if not cli.args.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'):
cli.args.files.append(os.path.join(dirpath, name))
+ # Run clang-format on the files we've found
try:
subprocess.run(clang_format + cli.args.files, check=True)
cli.log.info('Successfully formatted the C code.')
+
except subprocess.CalledProcessError:
cli.log.error('Error formatting C code!')
return False