clang-format 仍然使用“DisableFormat: true”进行格式化

clang-format still formatting with `DisableFormat: true`

documentation所述:

DisableFormat (bool): Disables formatting completely.

但是在 .clang-format 中检查只有这个选项的源 C++ 文件仍然报告文件需要格式化。

显然(至少 clang-format 8.0DisableFormat: true 不会覆盖 SortIncludes 选项,因此也需要明确指定。在 .clang-format 中包含以下内容将完全禁用格式化:

DisableFormat: true
SortIncludes: false

更新

还有一个 issue report 版本 5.0 到现在还没有人关注。