2019-03-28 11:26:05 +00:00
|
|
|
---
|
|
|
|
BasedOnStyle: Chromium
|
|
|
|
AlignEscapedNewlinesLeft: 'true'
|
|
|
|
AlignTrailingComments: 'true'
|
|
|
|
AllowShortBlocksOnASingleLine: 'true'
|
|
|
|
AllowShortIfStatementsOnASingleLine: 'false'
|
|
|
|
AllowShortLoopsOnASingleLine: 'false'
|
|
|
|
AlwaysBreakBeforeMultilineStrings: 'true'
|
|
|
|
AlwaysBreakTemplateDeclarations: 'true'
|
|
|
|
BreakBeforeBinaryOperators: 'true'
|
|
|
|
BreakBeforeBraces: Stroustrup
|
|
|
|
BreakBeforeTernaryOperators: 'true'
|
|
|
|
BreakConstructorInitializersBeforeComma: 'false'
|
|
|
|
ColumnLimit: '80'
|
|
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
|
|
|
|
Cpp11BracedListStyle: 'true'
|
2019-04-01 14:55:41 +00:00
|
|
|
IndentCaseLabels: 'false'
|
2019-03-28 11:26:05 +00:00
|
|
|
KeepEmptyLinesAtTheStartOfBlocks: 'false'
|
|
|
|
Language: Cpp
|
|
|
|
MaxEmptyLinesToKeep: '2'
|
|
|
|
PointerAlignment: Left
|
|
|
|
SpaceBeforeAssignmentOperators: 'true'
|
|
|
|
SpaceBeforeParens: ControlStatements
|
|
|
|
SpaceInEmptyParentheses: 'false'
|
|
|
|
SpacesInAngles: 'false'
|
|
|
|
SpacesInCStyleCastParentheses: 'false'
|
|
|
|
SpacesInParentheses: 'false'
|
|
|
|
Standard: Cpp11
|
|
|
|
TabWidth: '2'
|
|
|
|
UseTab: ForIndentation
|
2019-03-28 11:39:33 +00:00
|
|
|
IncludeCategories:
|
|
|
|
- Regex: '^"(llvm-c|clang-c)/'
|
|
|
|
Priority: 2
|
|
|
|
- Regex: '^"(llvm|clang)/'
|
|
|
|
Priority: 3
|
|
|
|
- Regex: '^(<|"(gtest|isl|json)/)'
|
|
|
|
Priority: 4
|
|
|
|
- Regex: '.*'
|
|
|
|
Priority: 1
|
2019-03-28 11:26:05 +00:00
|
|
|
|
|
|
|
...
|