detect duplicate comment fields
[simplev-cpp.git] / .clang-format
1 ---
2 Language: Cpp
3 BasedOnStyle: Google
4 AccessModifierOffset: -4
5 AlignEscapedNewlinesLeft: true
6 AlignOperands: true
7 AlignTrailingComments: false
8 AllowAllParametersOfDeclarationOnNextLine: true
9 AllowShortBlocksOnASingleLine: false
10 AllowShortCaseLabelsOnASingleLine: false
11 AllowShortFunctionsOnASingleLine: None
12 AllowShortIfStatementsOnASingleLine: false
13 AllowShortLoopsOnASingleLine: false
14 AlwaysBreakBeforeMultilineStrings: true
15 AlwaysBreakTemplateDeclarations: true
16 BinPackArguments: false
17 BinPackParameters: false
18 BreakBeforeBinaryOperators: NonAssignment
19 BreakBeforeBraces: Allman
20 BreakBeforeTernaryOperators: false
21 BreakConstructorInitializersBeforeComma: false
22 ColumnLimit: 100
23 ConstructorInitializerAllOnOneLineOrOnePerLine: true
24 ConstructorInitializerIndentWidth: 4
25 ContinuationIndentWidth: 4
26 Cpp11BracedListStyle: true
27 DerivePointerAlignment: false
28 DisableFormat: false
29 IndentCaseLabels: false
30 IndentWidth: 4
31 IndentWrappedFunctionNames: true
32 KeepEmptyLinesAtTheStartOfBlocks: false
33 MaxEmptyLinesToKeep: 2
34 NamespaceIndentation: None
35 PointerAlignment: Right
36 SpaceBeforeAssignmentOperators: true
37 SpaceBeforeParens: Never
38 SpaceInEmptyParentheses: false
39 SpacesBeforeTrailingComments: 1
40 SpacesInAngles: false
41 SpacesInCStyleCastParentheses: false
42 SpacesInParentheses: false
43 SpacesInSquareBrackets: false
44 Standard: Cpp11
45 TabWidth: 8
46 UseTab: Never
47 ...