File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ IndentWidth : 4
3
+ UseTab : Never
4
+ ColumnLimit : 100
5
+ AllowShortFunctionsOnASingleLine : Inline
6
+ AllowShortIfStatementsOnASingleLine : false
7
+ BreakConstructorInitializersBeforeComma : true
8
+ IndentCaseLabels : true
9
+ BreakBeforeBraces : Allman
10
+ NamespaceIndentation : None
11
+ MaxEmptyLinesToKeep : 1
12
+ KeepEmptyLinesAtTheStartOfBlocks : true
13
+ PointerAlignment : Left
14
+ SpaceBeforeParens : Never
15
+ SpaceBeforeAssignmentOperators : true
16
+ SpacesInParentheses : false
17
+ AlwaysBreakTemplateDeclarations : true
18
+ Standard : Auto
19
+ AccessModifierOffset : -4
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # src
3
+ find ../../src -type f \( -iname \* .? pp \) -exec clang-format -i {} \;
4
+ # apps
5
+ find ../../app -type f \( -iname \* .? pp \) -exec clang-format -i {} \;
You can’t perform that action at this time.
0 commit comments