Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 682 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 682 Bytes

run-clang-format

Script to run clang-format on all files in a directory

Usage

To run clang-format over all files in source_dir directory, just run:

python run-clang-format.py source_dir

If you want to specify the style for formatting (by default file style is used), then execute:

python run-clang-format.py -style FILE source_dir

You can specify the number of threads that will be used to reformat the code with -j option (when unspecified, the CPU count will be used):

python run-clang-format.py -j 16 source_dir

You may specify multiple directories to run clang-format over:

python run-clang-format.py source_dir1 source_dir2