Update README.md

This commit is contained in:
Steve Karg
2020-03-12 20:53:34 -05:00
committed by GitHub
parent 92645a9aaa
commit e94bf1bd5e
+10 -2
View File
@@ -37,12 +37,20 @@ defined in the first `.clang-format` file found in a parent directory.
### .clang-format file ### .clang-format file
--- ---
BasedOnStyle: Google BasedOnStyle: WebKit
BinPackParameters: false
AlignEscapedNewlines: Left
PointerAlignment: Right
AllowShortFunctionsOnASingleLine: None AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: false AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterReturnType: None
BreakBeforeBraces: Linux BreakBeforeBraces: Linux
BreakBeforeBinaryOperators: None
KeepEmptyLinesAtTheStartOfBlocks: false
PenaltyBreakBeforeFirstCallParameter: 1
IndentCaseLabels: true
IndentWidth: 4 IndentWidth: 4
UseTab: Never
SortIncludes: false SortIncludes: false
ColumnLimit: 80
... ...