1 Star 0 Fork 24

老江 / seafile-client

forked from lins05 / seafile-client 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.clang-format 1.83 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
lins05 提交于 2016-03-26 18:56 . Updated clang-format options.
---
BasedOnStyle: Google
# Good:
#
# class Foo
# {
# public:
#
# Foo() = default;
#
# };
#
# Bad:
#
# class Foo
# {
# public:
#
# Foo() = default;
#
# };
#
AccessModifierOffset: -4
# Good:
#
# clang = Clang(); // Comment 1
# format = Format(); // Comment 2
#
# Bad:
# clang = Clang(); // Comment 1
# format = Format(); // Comment 2
#
AlignTrailingComments: false
AllowShortFunctionsOnASingleLine: false
AllowShortBlocksOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
# Good:
#
# void F(int first,
# int second,
# int third,
# int fourth,
# int fifth,
# int sixth,
# int seventh,
# int eighth) {}
#
# Bad:
#
# void F(int first, int second, int third, int fourth, int fifth, int sixth,
# int seventh, int eighth) {}
#
BinPackParameters: false
BinPackArguments: false
# Like 'Attach', but break before braces on function, namespaces, class, struct
# and union definitions.
#
BreakBeforeBraces: Linux
# Good:
#
# class Foo
# {
# public:
#
# Foo()
# : first(1), second(2) {}
#
# };
#
# Bad:
#
# class Foo
# {
# public:
#
# Foo()
# : first(1), second(2) {}
#
# };
#
ConstructorInitializerIndentWidth: 4
IndentWidth: 4
# Continuation indents such as assignment statements are indented by 2 spaces.
ContinuationIndentWidth: 4
PointerAlignment: Right
# Don't try to guess the pointer alignment
DerivePointerAlignment: false
# List of foreach macros due to lack of range-based for loops.
ForEachMacros: [ foreach, foreachkey, foreachvalue, foreachpair ]
# Maximum number of empty lines to keep.
MaxEmptyLinesToKeep: 2
# Good:
#
# x = 42; // Comment
#
# Bad:
#
# x = 42; // Comment
#
SpacesBeforeTrailingComments: 1
...
C++
1
https://gitee.com/ahrz/seafile-client.git
git@gitee.com:ahrz/seafile-client.git
ahrz
seafile-client
seafile-client
master

搜索帮助

14c37bed 8189591 565d56ea 8189591