forked from rainyl/opencv_dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
27 lines (27 loc) · 849 Bytes
/
.clang-format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# None, Cpp, Java, JavaScript, ObjC, Proto, TableGen, TextProto
Language: Cpp
# WebKit Visual Studio GNU LLVM Google Mozilla Microsoft Chromium
BasedOnStyle: LLVM
AlignAfterOpenBracket: BlockIndent
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: Right
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: Always
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
BinPackArguments: false
BinPackParameters: false
BreakBeforeBraces: Attach
ColumnLimit: 100
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 2
IndentWidth: 2
PointerAlignment: Right
Standard: c++11
TabWidth: 2
UseTab: Never