The Node.js project has a .clang-format file to keep the C++ files in a consistent format, but it seems to be mostly unused as most of the C++ files in the src/ directory does not seem to have these formatting rules applied to them, is there a specific reason for this?
Are there any formatting rules specific to the Node.js C++ codebase styling rules that tools like clang-format can't already follow?
The Node.js project has a
.clang-formatfile to keep the C++ files in a consistent format, but it seems to be mostly unused as most of the C++ files in thesrc/directory does not seem to have these formatting rules applied to them, is there a specific reason for this?Are there any formatting rules specific to the Node.js C++ codebase styling rules that tools like
clang-formatcan't already follow?