blob: 40bac45c39ed306a12dd5bdb533bd63a9a0a7b96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# a relatively bespoke formatting style for C in particular.
# might undergo changes if i find something i don't like.
---
Language: Cpp
BasedOnStyle: Mozilla
AlignEscapedNewlines: Left
AllowShortBlocksOnASingleLine: Always
AllowShortIfStatementsOnASingleLine: WithoutElse
AllowShortLoopsOnASingleLine: true
BreakAfterReturnType: AllDefinitions
BinPackArguments: true
BinPackParameters: true
BreakBeforeBinaryOperators: NonAssignment
ColumnLimit: 100
ContinuationIndentWidth: 4
IndentCaseLabels: false
IndentWidth: 4
PenaltyIndentedWhitespace: 100
ForEachMacros:
- FOR_EACH
- STRING_ARRAY_FOR_EACH
...
|