Files
unison/.clang-format

35 lines
749 B
Plaintext
Raw Permalink Normal View History

2018-05-08 15:17:45 +03:00
---
Language: Cpp
BasedOnStyle: Microsoft
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
BinPackArguments: false
BinPackParameters: false
BreakAfterReturnType: TopLevelDefinitions
BreakTemplateDeclarations: Yes
2018-05-08 15:17:45 +03:00
ColumnLimit: 100
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^(<|")ns3/'
Priority: 2
SortPriority: 0
- Regex: "^<"
Priority: 3
SortPriority: 0
- Regex: ".*"
Priority: 1
SortPriority: 0
InsertBraces: true
InsertNewlineAtEOF: true
KeepEmptyLines:
AtEndOfFile: false
AtStartOfBlock: false
AtStartOfFile: false
LineEnding: LF
PackConstructorInitializers: Never
PointerAlignment: Left
QualifierAlignment: Left
SeparateDefinitionBlocks: Always
2023-10-19 18:55:47 +01:00
Standard: "c++20"