blob: b2b21d75f3bc41539b0fb6b2a46f268ea21d17ff [file] [log] [blame]
Viet-Hoa Dobd4f6b92023-05-30 09:34:32 +01001---
2Language: Cpp
3AccessModifierOffset: -4
4AlignAfterOpenBracket: Align
5AlignConsecutiveAssignments: true
6AlignConsecutiveDeclarations: true
7AlignEscapedNewlinesLeft: true
8AlignTrailingComments: true
9AllowShortBlocksOnASingleLine: false
10AllowShortCaseLabelsOnASingleLine: false
11AllowShortFunctionsOnASingleLine: None
12AllowShortIfStatementsOnASingleLine: false
13AllowShortLoopsOnASingleLine: false
14AlwaysBreakAfterDefinitionReturnType: None
15AlwaysBreakAfterReturnType: None
16AlwaysBreakBeforeMultilineStrings: true
17AlwaysBreakTemplateDeclarations: true
18BreakBeforeBinaryOperators: NonAssignment
19BreakBeforeBraces: Allman
20BreakBeforeTernaryOperators: false
21BreakConstructorInitializersBeforeComma: false
22ConstructorInitializerAllOnOneLineOrOnePerLine: true
23Cpp11BracedListStyle: false
24DerivePointerAlignment: false
25IndentCaseLabels: true
26IndentWidth: 4
27IndentWrappedFunctionNames: false
28KeepEmptyLinesAtTheStartOfBlocks: false
29MaxEmptyLinesToKeep: 1
30NamespaceIndentation: None
31PointerAlignment: Right
32SortIncludes: true
33SpaceAfterCStyleCast: false
34SpaceBeforeAssignmentOperators: true
35SpaceBeforeParens: Never
36SpaceInEmptyParentheses: false
37SpacesInAngles: false
38SpacesInCStyleCastParentheses: false
39SpacesInParentheses: false
40SpacesInSquareBrackets: false
41Standard: c++14
42TabWidth: 4
43UseTab: Never
44ReflowComments: false
45ContinuationIndentWidth: 4
46ColumnLimit: 0
47---