clang-format仍然使用DisableFormat:true格式化

时间:2019-04-24 15:37:59

标签: clang-format

documentation所述:

  

DisableFormat(布尔):完全禁用格式化。

但是在C++中仅具有此选项的源.clang-format文件进行检查仍会报告该文件需要格式化。

1 个答案:

答案 0 :(得分:0)

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

DisableFormat: true
SortIncludes: false

更新

对于版本5.0,还有一个issue report到目前为止还没有引起人们的注意。