blob: b6cfbf3804619f2e118c83734bae7275de67abe4 (
plain) (
blame)
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
31
32
33
34
35
|
# SPDX-FileCopyrightText: 2019 Georg Rudoy <0xd34df00d@gmail.com>
#
# SPDX-License-Identifier: CC0-1.0
AlignAfterOpenBracket: Align
AlignTrailingComments: true
BasedOnStyle: WebKit
BraceWrapping:
AfterClass: true
AfterFunction: true
AfterStruct: true
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: true
BreakConstructorInitializers: BeforeColon
BreakStringLiterals: true
DisableFormat: false
FixNamespaceComments: true
IncludeBlocks: Regroup
IncludeCategories:
- Regex: "^.QXmpp.*"
Priority: 1
- Regex: "^<Q(?!Xmpp).*"
Priority: 2
- Regex: "^<[^Q].*"
Priority: 3
InsertBraces: true
Language: Cpp
PointerAlignment: Right
ReflowComments: true
SortIncludes: true
SpaceAfterTemplateKeyword: false
SpacesBeforeTrailingComments: 2
SpacesInLineCommentPrefix:
Minimum: 1
|