qmk_firmware/.clang-format

27 строки
675 B
Plaintext
Исходник Постоянная ссылка Обычный вид История

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