]> git.ipfire.org Git - thirdparty/freeswitch.git/blame - .clang-format
[mod_amr, mod_amrwb] Fix input data corruption
[thirdparty/freeswitch.git] / .clang-format
CommitLineData
ffef746d
TC
1# http://clang.llvm.org/docs/ClangFormatStyleOptions.html
2---
3Language: Cpp
4AccessModifierOffset: 0
5AlignAfterOpenBracket: true
6AlignEscapedNewlinesLeft: false
7AlignOperands: true
8AlignTrailingComments: true
9AllowAllParametersOfDeclarationOnNextLine: true
10AllowShortBlocksOnASingleLine: true
11AllowShortCaseLabelsOnASingleLine: false
12AllowShortFunctionsOnASingleLine: All
13AllowShortIfStatementsOnASingleLine: true
14AllowShortLoopsOnASingleLine: true
15AlwaysBreakAfterDefinitionReturnType: false
16AlwaysBreakBeforeMultilineStrings: false
17AlwaysBreakTemplateDeclarations: false
18BinPackArguments: true
19BinPackParameters: true
20BreakBeforeBinaryOperators: None
21BreakBeforeBraces: Linux
22BreakBeforeTernaryOperators: true
23BreakConstructorInitializersBeforeComma: false
24ColumnLimit: 120
25CommentPragmas: '^ IWYU pragma:'
26ConstructorInitializerAllOnOneLineOrOnePerLine: false
27ConstructorInitializerIndentWidth: 4
28ContinuationIndentWidth: 4
29Cpp11BracedListStyle: true
30DerivePointerAlignment: false
31DisableFormat: false
32ExperimentalAutoDetectBinPacking: false
33ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
34IndentCaseLabels: false
35IndentFunctionDeclarationAfterType: false
36IndentWidth: 4
37IndentWrappedFunctionNames: false
38KeepEmptyLinesAtTheStartOfBlocks: true
39MaxEmptyLinesToKeep: 1
40NamespaceIndentation: None
41PenaltyBreakBeforeFirstCallParameter: 19
42PenaltyBreakComment: 300
43PenaltyBreakFirstLessLess: 120
44PenaltyBreakString: 1000
45PenaltyExcessCharacter: 1000000
46PenaltyReturnTypeOnItsOwnLine: 60
47PointerAlignment: Right
48SpaceAfterCStyleCast: false
49SpaceBeforeAssignmentOperators: true
50SpaceBeforeParens: ControlStatements
51SpaceInEmptyParentheses: false
52SpacesBeforeTrailingComments: 1
53SpacesInAngles: false
54SpacesInCStyleCastParentheses: false
55SpacesInContainerLiterals: true
56SpacesInParentheses: false
57SpacesInSquareBrackets: false
58Standard: Cpp11
59TabWidth: 4
60UseTab: Always
61...