Skip to content

Commit 891bff1

Browse files
committed
4.26 Update
1 parent 0f4f164 commit 891bff1

3 files changed

Lines changed: 144 additions & 2 deletions

File tree

.clang-format

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
---
2+
Language: Cpp
3+
AccessModifierOffset: -4
4+
AlignAfterOpenBracket: DontAlign
5+
AlignConsecutiveAssignments: false
6+
AlignConsecutiveDeclarations: false
7+
AlignEscapedNewlines: Left
8+
AlignOperands: true
9+
AlignTrailingComments: true
10+
AllowAllParametersOfDeclarationOnNextLine: true
11+
AllowShortBlocksOnASingleLine: true
12+
AllowShortCaseLabelsOnASingleLine: false
13+
AllowShortFunctionsOnASingleLine: Empty
14+
AllowShortIfStatementsOnASingleLine: Never
15+
AllowShortLambdasOnASingleLine: None
16+
AllowShortLoopsOnASingleLine: false
17+
AlwaysBreakAfterReturnType: None
18+
AlwaysBreakBeforeMultilineStrings: true
19+
AlwaysBreakTemplateDeclarations: Yes
20+
BinPackArguments: true
21+
BinPackParameters: true
22+
BreakBeforeBinaryOperators: None
23+
BreakBeforeInheritanceComma: false
24+
BreakInheritanceList: BeforeColon
25+
BreakBeforeTernaryOperators: true
26+
BreakConstructorInitializersBeforeComma: false
27+
BreakConstructorInitializers: BeforeComma
28+
BreakAfterJavaFieldAnnotations: false
29+
BreakStringLiterals: true
30+
BreakBeforeBraces: Custom
31+
BraceWrapping:
32+
AfterCaseLabel: false
33+
AfterClass: true
34+
AfterEnum: true
35+
AfterFunction: true
36+
AfterNamespace: true
37+
AfterStruct: true
38+
AfterUnion: true
39+
AfterExternBlock: true
40+
AfterControlStatement: Always
41+
BeforeElse: true
42+
BeforeCatch: true
43+
SplitEmptyFunction: false
44+
SplitEmptyRecord: false
45+
SplitEmptyNamespace: false
46+
ColumnLimit: 110
47+
CommentPragmas: '^ IWYU pragma:'
48+
CompactNamespaces: false
49+
AllowAllConstructorInitializersOnNextLine: false
50+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
51+
ConstructorInitializerIndentWidth: 4
52+
ContinuationIndentWidth: 4
53+
Cpp11BracedListStyle: true
54+
DerivePointerAlignment: false
55+
DisableFormat: false
56+
FixNamespaceComments: true
57+
ForEachMacros:
58+
- for
59+
IncludeBlocks: Regroup
60+
IncludeCategories:
61+
- Regex: '.*(PCH).*'
62+
Priority: -1
63+
- Regex: '".*"'
64+
Priority: 1
65+
- Regex: '^<.*\.(h)>'
66+
Priority: 3
67+
- Regex: '^<.*>'
68+
Priority: 4
69+
IncludeIsMainRegex: '([-_](test|unittest))?$'
70+
IndentCaseLabels: true
71+
IndentPPDirectives: AfterHash
72+
IndentWidth: 4
73+
IndentWrappedFunctionNames: false
74+
JavaScriptQuotes: Leave
75+
JavaScriptWrapImports: true
76+
KeepEmptyLinesAtTheStartOfBlocks: false
77+
MacroBlockBegin: ''
78+
MacroBlockEnd: ''
79+
MaxEmptyLinesToKeep: 2
80+
NamespaceIndentation: All
81+
ObjCBinPackProtocolList: Never
82+
ObjCBlockIndentWidth: 2
83+
ObjCSpaceAfterProperty: false
84+
ObjCSpaceBeforeProtocolList: true
85+
PenaltyBreakAssignment: 2
86+
PenaltyBreakBeforeFirstCallParameter: 1
87+
PenaltyBreakComment: 300
88+
PenaltyBreakFirstLessLess: 120
89+
PenaltyBreakString: 1000
90+
PenaltyBreakTemplateDeclaration: 10
91+
PenaltyExcessCharacter: 1000000
92+
PenaltyReturnTypeOnItsOwnLine: 200
93+
PointerAlignment: Left
94+
RawStringFormats:
95+
- Language: Cpp
96+
Delimiters:
97+
- cc
98+
- CC
99+
- cpp
100+
- Cpp
101+
- CPP
102+
- 'c++'
103+
- 'C++'
104+
CanonicalDelimiter: ''
105+
BasedOnStyle: google
106+
- Language: TextProto
107+
Delimiters:
108+
- pb
109+
- PB
110+
- proto
111+
- PROTO
112+
EnclosingFunctions:
113+
- EqualsProto
114+
- EquivToProto
115+
- PARSE_PARTIAL_TEXT_PROTO
116+
- PARSE_TEST_PROTO
117+
- PARSE_TEXT_PROTO
118+
- ParseTextOrDie
119+
- ParseTextProtoOrDie
120+
CanonicalDelimiter: ''
121+
ReflowComments: true
122+
SortIncludes: true
123+
SortUsingDeclarations: true
124+
SpaceAfterCStyleCast: true
125+
SpaceAfterTemplateKeyword: true
126+
SpaceBeforeAssignmentOperators: true
127+
SpaceBeforeCpp11BracedList: false
128+
SpaceBeforeCtorInitializerColon: true
129+
SpaceBeforeInheritanceColon: true
130+
SpaceBeforeParens: ControlStatements
131+
SpaceBeforeRangeBasedForLoopColon: true
132+
SpaceInEmptyParentheses: false
133+
SpacesBeforeTrailingComments: 4
134+
SpacesInAngles: false
135+
SpacesInContainerLiterals: true
136+
SpacesInCStyleCastParentheses: false
137+
SpacesInParentheses: false
138+
SpacesInSquareBrackets: false
139+
Standard: Auto
140+
TabWidth: 4
141+
UseTab: Always
142+
...

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ stages:
55

66
variables:
77
plugin: AttributesExtension
8-
engine_version: 25
8+
engine_version: 26
99

1010
cache:
1111
paths:

AttributesExtension.uplugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"CreatedByURL": "http://piperift.com/",
1111
"DocsURL": "https://piperift.com/AttributesExtension/",
1212
"SupportURL": "info@piperift.com",
13-
"EngineVersion": "4.25",
13+
"EngineVersion": "4.26",
1414
"CanContainContent": false,
1515
"IsBetaVersion": false,
1616
"Modules": [

0 commit comments

Comments
 (0)