squall/.clang-format

56 lines
1.5 KiB
Text
Raw Permalink Normal View History

2020-09-07 14:54:56 -05:00
---
AccessModifierOffset: 0
2020-09-07 14:54:56 -05:00
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AllowShortBlocksOnASingleLine: Never
AllowShortCaseLabelsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: Never
AlwaysBreakTemplateDeclarations: Yes
BreakBeforeBraces: Attach
2020-09-07 14:54:56 -05:00
BreakBeforeTernaryOperators: true
BreakConstructorInitializers: BeforeComma
ColumnLimit: 0
CompactNamespaces: false
2020-09-07 14:54:56 -05:00
ContinuationIndentWidth: 4
Cpp11BracedListStyle: false
2020-09-07 14:54:56 -05:00
DeriveLineEnding: false
DerivePointerAlignment: false
IncludeBlocks: Merge
IncludeCategories:
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
Priority: 2
SortPriority: 2
- Regex: '^(<|"(gtest|gmock|isl|json)/)'
Priority: 3
- Regex: "<[[:alnum:].]+>"
Priority: 4
- Regex: ".*"
Priority: 1
SortPriority: 0
IndentGotoLabels: false
IndentWidth: 4
MaxEmptyLinesToKeep: 1
2020-09-08 21:18:46 -05:00
ObjCBlockIndentWidth: 4
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: false
2020-09-07 14:54:56 -05:00
PointerAlignment: Left
SortIncludes: true
SpaceAfterCStyleCast: false
SpaceAfterLogicalNot: false
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeCpp11BracedList: true
2020-09-07 14:54:56 -05:00
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeSquareBrackets: false
2020-09-07 14:54:56 -05:00
SpaceInEmptyBlock: false
SpacesInAngles: false
SpacesInCStyleCastParentheses: false
SpacesInConditionalStatement: false
Standard: c++11
2020-09-16 00:52:50 -05:00
TabWidth: 4
TypenameMacros: ['STORM_EXPLICIT_LIST', 'STORM_LIST']
2020-09-07 14:54:56 -05:00
UseCRLF: false
UseTab: Never