493afb05e6
This is working repository now. I had to clean this up due to my f_ups, that made this simple repo around 200MB large. Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
41 lines
908 B
YAML
41 lines
908 B
YAML
BasedOnStyle: Google
|
|
IndentWidth: 4
|
|
|
|
# Add missing namespace comment on the closing bracket
|
|
FixNamespaceComments: true
|
|
|
|
# Do not indent everything in namespace
|
|
NamespaceIndentation: None
|
|
|
|
# Disable single line functions
|
|
AllowShortFunctionsOnASingleLine: None
|
|
|
|
# Braces configuration
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterCaseLabel: true
|
|
AfterClass: false
|
|
AfterControlStatement: Never
|
|
AfterEnum: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
AfterExternBlock: true
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
|
|
ColumnLimit: 120
|
|
|
|
# Pointer star next to type, not variable name
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
|
|
# Function parameters Alignment
|
|
AlignAfterOpenBracket: Align
|
|
AllowAllArgumentsOnNextLine: false
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
BinPackArguments: false
|
|
BinPackParameters: OnePerLine
|
|
|