1

我尝试了 clang-format,它非常适合我的编码风格。我想知道是否可以在我的补丁上使用 clang 格式,这样我就不会格式化我不想修改的代码。这样我就可以在提交到主线之前在我的补丁上运行 clang-format。

谢谢,

4

1 回答 1

4

There is a patch to run clang-format on a diff:

http://clang.llvm.org/docs/ClangFormat.html#script-for-patch-reformatting

It actually still formats the original files and only takes the diff to determine the line ranges it should run on.

于 2015-11-03T17:34:09.910 回答