.clang-format 840 字节
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# This file is used by clang-format to autoformat paddle source code
#
# The clang-format is part of llvm toolchain.
# It need to install llvm and clang to format source code style.
#
# The basic usage is,
#   clang-format -i -style=file PATH/TO/SOURCE/CODE
#
# The -style=file implicit use ".clang-format" file located in one of 
# parent directory. 
# The -i means inplace change.
#
# The document of clang-format is 
#   http://clang.llvm.org/docs/ClangFormat.html
#   http://clang.llvm.org/docs/ClangFormatStyleOptions.html
---
Language:        Cpp
BasedOnStyle:  Google
Y
Yi Wang 已提交
19 20 21 22
IndentWidth:     2
TabWidth:        2
ContinuationIndentWidth: 4
AccessModifierOffset: -2  # The private/protected/public has no indent in class
Z
zhangjinchao01 已提交
23 24
Standard:  Cpp11 
AllowAllParametersOfDeclarationOnNextLine: true
Y
Yu Yang 已提交
25 26
BinPackParameters: false
BinPackArguments: false
Z
zhangjinchao01 已提交
27 28
...