My team is interested in adding a tool to enforce style guidelines for C++. Two of the best options we have researched are clang-tidy and clang-format.
clang-format appears to meet nearly all of our needs, however one thing I have been unable to determine is if there is a way to configure naming conventions with clang-format. This can be done with clang-tidy using readability-identifier-naming.
Is there a similar feature in clang-format?