我怎样才能让 clang-format 只改变缩进宽度?

How can I get clang-format to change only indent width?

我有一个大型代码库,我想对其缩进宽度进行标准化。 如何在不进行其他更改的情况下使用 clang-format 执行此操作?

-style='{IndentWidth: 2}' 传递给 clang-format

-dump-config 所暗示的那样对源文件进行其他更改。

clang-format 根本不支持。您可能会通过设置 "ColumnLimit: 0" 来接近它,这将使 clang-format 在一定程度上接受现有的换行符。