diff options
| -rw-r--r-- | .clang-format | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..1f02936 --- /dev/null +++ b/.clang-format @@ -0,0 +1,17 @@ +--- +BasedOnStyle: WebKit + +AlignAfterOpenBracket: AlwaysBreak +AlignOperands: true +AllowShortFunctionsOnASingleLine: Inline +AlwaysBreakBeforeMultilineStrings: true +AlwaysBreakTemplateDeclarations: Yes +BinPackArguments: false +BinPackParameters: false +BreakBeforeBinaryOperators: None +ColumnLimit: 100 +KeepEmptyLinesAtTheStartOfBlocks: false +PenaltyBreakBeforeFirstCallParameter: 100 +PenaltyReturnTypeOnItsOwnLine: 1000 +SpaceInEmptyBlock: false +... |