qmk_sweep_skeletyl/.clang-format

31 lines
828 B
Plaintext
Raw Permalink Normal View History

2019-04-19 01:23:52 +02:00
---
2019-01-19 04:06:19 +01:00
BasedOnStyle: Google
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
AlignOperands: 'true'
AllowAllParametersOfDeclarationOnNextLine: 'false'
2022-02-12 05:00:34 +01:00
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: Empty
AllowShortLoopsOnASingleLine: 'false'
2019-01-19 04:06:19 +01:00
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: 'false'
BinPackArguments: 'true'
BinPackParameters: 'true'
ColumnLimit: '1000'
IndentCaseLabels: 'true'
IndentPPDirectives: AfterHash
2019-06-09 10:49:40 +02:00
IndentWidth: '4'
2019-01-19 04:06:19 +01:00
MaxEmptyLinesToKeep: '1'
PointerAlignment: Right
SortIncludes: 'false'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: 'false'
2022-02-12 05:00:34 +01:00
SpacesBeforeTrailingComments: 1
TabWidth: '4'
2019-01-19 04:06:19 +01:00
UseTab: Never
...