标签: clang-format
如documentation所述:
DisableFormat(布尔):完全禁用格式化。
但是在C++中仅具有此选项的源.clang-format文件进行检查仍会报告该文件需要格式化。
C++
.clang-format
答案 0 :(得分:0)
显然(至少使用clang-format 8.0)DisableFormat: true不会覆盖SortIncludes选项,因此也需要明确指定它。 .clang-format中包含以下内容将完全禁用格式化:
clang-format 8.0
DisableFormat: true
SortIncludes
DisableFormat: true SortIncludes: false
更新
对于版本5.0,还有一个issue report到目前为止还没有引起人们的注意。