]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
readability enhancements
authorskullY <skullydazed@gmail.com>
Thu, 22 Aug 2019 20:33:34 +0000 (13:33 -0700)
committerskullydazed <skullydazed@users.noreply.github.com>
Sat, 31 Aug 2019 15:50:25 +0000 (08:50 -0700)
lib/python/qmk/cli/cformat.py

index 0c209247d956379117c487a9d4b6bc8e2e0d0bbe..91e650368b3383e4af39ba8fabe7badf882ce1ad 100644 (file)
@@ -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