fix(format/clang-format): Acessmodifieroffset & line breaks (#7005)

This commit is contained in:
raizo
2021-07-17 15:04:39 +02:00
committed by GitHub
parent 4e0e1370d4
commit 76863ac11f

View File

@@ -1,4 +1,5 @@
---
---
AccessModifierOffset: '-4'
AlignConsecutiveMacros: 'true'
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
@@ -14,7 +15,9 @@ AllowShortLoopsOnASingleLine: 'true'
BinPackArguments: 'true'
BinPackParameters: 'true'
BreakBeforeBraces: Allman
ColumnLimit: '500'
IndentWidth: '4'
PointerAlignment: Left
SpaceAfterCStyleCast: 'true'
SpaceBeforeCpp11BracedList: 'true'
SpaceBeforeParens: ControlStatements
@@ -24,11 +27,7 @@ SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
SpacesInContainerLiterals: 'false'
SpacesInParentheses: 'false'
Standard: Latest
TabWidth: '0'
UseTab: Never
PointerAlignment: Left
ColumnLimit: 0
...