forked from microsoft/AdaptiveCards
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-format
30 lines (30 loc) · 795 Bytes
/
.clang-format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
# this file work is a derivative of .clang-format which follows
# https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md
#
Language: Cpp
BasedOnStyle: Microsoft
AccessModifierOffset: -4
AlignAfterOpenBracket: AlwaysBreak
AlignEscapedNewlines: DontAlign
AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakTemplateDeclarations: Yes
BinPackArguments: false
BinPackParameters: false
BraceWrapping:
AfterCaseLabel: true
AfterUnion: true
AfterExternBlock: false
BreakConstructorInitializers: AfterColon
CompactNamespaces: true
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^"(stdafx.h|pch.h|precomp.h)"$'
Priority: -1
NamespaceIndentation: Inner
PenaltyExcessCharacter: 1
PointerAlignment: Left
SortIncludes: false
Standard: Cpp11
UseTab: Never
...