3

我想尽可能地遵循CppCoreGuidelines,但我在配置 clang-format 时遇到了一些问题。

如何配置 clang-format 以符合 isocpp 核心准则?

例如,以下指南给我带来了一些麻烦。

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rl-ptr

clang-format 似乎总是选择T &operator[](size_t);,我无法找到正确的设置。

4

1 回答 1

4

将此添加到您的.clang-format

PointerAlignment: Left

你可以在clang-format-configurator中在线测试

于 2015-12-10T09:28:08.467 回答