Richard Marian Thomaiyar | 216f213 | 2018-06-12 19:20:48 +0530 | [diff] [blame] | 1 | --- |
| 2 | BasedOnStyle: LLVM |
Patrick Venture | 9565abd | 2018-11-14 09:11:59 -0800 | [diff] [blame] | 3 | Language: Cpp |
Richard Marian Thomaiyar | 216f213 | 2018-06-12 19:20:48 +0530 | [diff] [blame] | 4 | IndentWidth: 8 |
| 5 | UseTab: Always |
Patrick Venture | 246ae8d | 2018-11-23 08:32:26 -0800 | [diff] [blame^] | 6 | ColumnLimit: 80 |
Richard Marian Thomaiyar | 216f213 | 2018-06-12 19:20:48 +0530 | [diff] [blame] | 7 | BreakBeforeBraces: Linux |
| 8 | AlwaysBreakBeforeMultilineStrings: true |
| 9 | AllowShortIfStatementsOnASingleLine: false |
| 10 | AllowShortLoopsOnASingleLine: false |
| 11 | AllowShortFunctionsOnASingleLine: false |
| 12 | IndentCaseLabels: false |
| 13 | AlignEscapedNewlinesLeft: false |
| 14 | AlignTrailingComments: true |
| 15 | AllowAllParametersOfDeclarationOnNextLine: false |
| 16 | AlignAfterOpenBracket: true |
| 17 | SpaceAfterCStyleCast: false |
| 18 | MaxEmptyLinesToKeep: 2 |
| 19 | BreakBeforeBinaryOperators: NonAssignment |
| 20 | BreakStringLiterals: false |
| 21 | SortIncludes: false |
| 22 | ContinuationIndentWidth: 8 |