]> git.ipfire.org Git - thirdparty/pdns.git/blob - .clang-format
Make sure we can install unsigned packages.
[thirdparty/pdns.git] / .clang-format
1 ---
2 Language: Cpp
3 BasedOnStyle: WebKit
4 AccessModifierOffset: -2
5 ConstructorInitializerIndentWidth: 2
6 ContinuationIndentWidth: 2
7 IndentWidth: 2
8 ObjCBlockIndentWidth: 2
9
10 SortIncludes: false
11
12 SpaceBeforeCpp11BracedList: false
13 Cpp11BracedListStyle: true
14
15 BreakBeforeBraces: Custom
16 BraceWrapping:
17 AfterClass: true
18 AfterControlStatement: false
19 AfterEnum: true
20 AfterExternBlock: true
21 AfterFunction: true
22 AfterNamespace: true
23 AfterStruct: true
24 AfterUnion: true
25 BeforeCatch: true
26 BeforeElse: true
27
28 AllowAllParametersOfDeclarationOnNextLine: true
29 BreakConstructorInitializers: AfterColon
30 ConstructorInitializerAllOnOneLineOrOnePerLine: true