replace ::cast_dynamic() with relevant ActionManager::get_*_action() calls
[ardour.git] / tools / clang-format
1 ---
2
3 Language: Cpp
4 AlignAfterOpenBracket: 'true'
5 AlignTrailingComments: 'true'
6 AlwaysBreakTemplateDeclarations: 'true'
7 AllowShortBlocksOnASingleLine: 'false'
8 AllowShortCaseLabelsOnASingleLine: 'false'
9 AllowShortFunctionsOnASingleLine: All
10 AllowShortIfStatementsOnASingleLine: 'false'
11 AllowShortLoopsOnASingleLine: 'false'
12 AlwaysBreakAfterDefinitionReturnType: 'true'
13 BasedOnStyle: LLVM
14 BreakBeforeBraces: 'Linux'
15 BreakConstructorInitializersBeforeComma: 'true'
16 ColumnLimit: '100'
17 ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
18 IndentCaseLabels: 'false'
19 NamespaceIndentation: 'None'
20 PenaltyReturnTypeOnItsOwnLine: '1'
21 PointerAlignment: Left
22 SpaceBeforeParens: Always
23 TabWidth: '2'
24 UseTab: ForIndentation
25