Open
Description
Please implement directory recursion for Clang-Format. This helps to quickly format large C/C++ project directories.
As a workaround, UNIX users can write a custom shell script. But that would force WSL for Windows C/C++ developers.
As a workaround, cmake users can use a file
... GLOB_RECURSE
... directive. But not all C/C++ users use cmake.
Really, I would like to see cpplint do this work automatically.
Start with the conventional filenames: .c
, .cpp
, .h
, .hpp
, and introduce other common file extensions such as .cc
, .cxx
, .hxx
, case insensitivity, and so on.