From 0c937342e1f5f9c2c47d06139b47a46eb6223b59 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 20:19:20 +0100 Subject: [PATCH 01/25] update:clang-format --- .clang-format | 241 +++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 218 insertions(+), 23 deletions(-) diff --git a/.clang-format b/.clang-format index 08eb8901..570593c9 100644 --- a/.clang-format +++ b/.clang-format @@ -2,79 +2,274 @@ Language: Cpp AccessModifierOffset: -4 AlignAfterOpenBracket: Align -AlignConsecutiveAssignments: false -AlignConsecutiveDeclarations: false -AlignOperands: true -AlignTrailingComments: true +AlignArrayOfStructures: None +AlignConsecutiveAssignments: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: false + AlignFunctionPointers: false + PadOperators: true +AlignConsecutiveBitFields: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: false + AlignFunctionPointers: false + PadOperators: false +AlignConsecutiveDeclarations: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: true + AlignFunctionPointers: false + PadOperators: false +AlignConsecutiveMacros: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: false + AlignFunctionPointers: false + PadOperators: false +AlignConsecutiveShortCaseStatements: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCaseArrows: false + AlignCaseColons: false +AlignConsecutiveTableGenBreakingDAGArgColons: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: false + AlignFunctionPointers: false + PadOperators: false +AlignConsecutiveTableGenCondOperatorColons: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: false + AlignFunctionPointers: false + PadOperators: false +AlignConsecutiveTableGenDefinitionColons: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + AlignFunctionDeclarations: false + AlignFunctionPointers: false + PadOperators: false +AlignEscapedNewlines: Right +AlignOperands: AlignAfterOperator +AlignTrailingComments: + Kind: Always + OverEmptyLines: 0 +AllowAllArgumentsOnNextLine: true AllowAllParametersOfDeclarationOnNextLine: true +AllowBreakBeforeNoexceptSpecifier: Never AllowShortBlocksOnASingleLine: Never +AllowShortCaseExpressionOnASingleLine: true AllowShortCaseLabelsOnASingleLine: false +AllowShortCompoundRequirementOnASingleLine: true +AllowShortEnumsOnASingleLine: true AllowShortFunctionsOnASingleLine: Inline AllowShortIfStatementsOnASingleLine: Never +AllowShortLambdasOnASingleLine: All AllowShortLoopsOnASingleLine: false -AlwaysBreakAfterDefinitionReturnType: None -AlwaysBreakAfterReturnType: None +AllowShortNamespacesOnASingleLine: false AlwaysBreakBeforeMultilineStrings: false -AlwaysBreakTemplateDeclarations: Yes +AttributeMacros: [ ] BinPackArguments: true -BinPackParameters: true +BinPackLongBracedList: true +BinPackParameters: BinPack +BitFieldColonSpacing: Both +BracedInitializerIndentWidth: -1 +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: Never + AfterEnum: false + AfterExternBlock: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + BeforeCatch: false + BeforeElse: false + BeforeLambdaBody: false + BeforeWhile: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakAdjacentStringLiterals: true +BreakAfterAttributes: Leave +BreakAfterReturnType: None +BreakArrays: true BreakBeforeBinaryOperators: None +BreakBeforeConceptDeclarations: Always BreakBeforeBraces: Attach +BreakBeforeInlineASMColon: OnlyMultiline +BreakBeforeTemplateCloser: false BreakBeforeTernaryOperators: false -BreakConstructorInitializersBeforeComma: false +BreakBinaryOperations: Never +BreakConstructorInitializers: BeforeColon +BreakFunctionDefinitionParameters: false +BreakInheritanceList: BeforeColon +BreakStringLiterals: true +BreakTemplateDeclarations: Yes ColumnLimit: 100 CommentPragmas: '^ (IWYU pragma:|NOLINT)' -ConstructorInitializerAllOnOneLineOrOnePerLine: false +CompactNamespaces: false ConstructorInitializerIndentWidth: 4 ContinuationIndentWidth: 4 Cpp11BracedListStyle: true DerivePointerAlignment: false DisableFormat: false -ForEachMacros: [ ] +EmptyLineAfterAccessModifier: Never +EmptyLineBeforeAccessModifier: LogicalBlock +EnumTrailingComma: Remove +FixNamespaceComments: true +ForEachMacros: + - FOR_EACH +IfMacros: [ ] +IncludeBlocks: Preserve IncludeCategories: - Regex: '^<[Ww]indows\.h>$' Priority: 1 + SortPriority: 0 + CaseSensitive: false - Regex: '^<' Priority: 2 + SortPriority: 0 + CaseSensitive: false - Regex: '^"' Priority: 3 + SortPriority: 0 + CaseSensitive: false +IncludeIsMainRegex: '(Test)?$' +IncludeIsMainSourceRegex: '' +IndentAccessModifiers: false +IndentCaseBlocks: false IndentCaseLabels: false +IndentExportBlock: true +IndentExternBlock: AfterExternBlock +IndentGotoLabels: true +IndentPPDirectives: None +IndentRequiresClause: true IndentWidth: 4 -IndentWrappedFunctionNames: false +IndentWrappedFunctionNames: true +InsertBraces: false InsertNewlineAtEOF: true -KeepEmptyLinesAtTheStartOfBlocks: false +InsertTrailingCommas: None +IntegerLiteralSeparator: + Binary: 0 + BinaryMinDigits: 0 + Decimal: 0 + DecimalMinDigits: 0 + Hex: 0 + HexMinDigits: 0 +KeepEmptyLines: + AtEndOfFile: false + AtStartOfBlock: false + AtStartOfFile: false +KeepFormFeed: false +LambdaBodyIndentation: Signature LineEnding: LF MacroBlockBegin: '' MacroBlockEnd: '' +MainIncludeChar: Quote MaxEmptyLinesToKeep: 1 NamespaceIndentation: None -ObjCBlockIndentWidth: 4 -ObjCSpaceAfterProperty: false -ObjCSpaceBeforeProtocolList: true +OneLineFormatOffRegex: '' +PackConstructorInitializers: BinPack +PenaltyBreakAssignment: 2 PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakBeforeMemberAccess: 150 PenaltyBreakComment: 300 PenaltyBreakFirstLessLess: 120 +PenaltyBreakOpenParenthesis: 0 +PenaltyBreakScopeResolution: 500 PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 PenaltyExcessCharacter: 1000000 +PenaltyIndentedWhitespace: 0 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Left +PPIndentWidth: -1 QualifierAlignment: Left -ReflowComments: true +ReferenceAlignment: Pointer +ReflowComments: Always RemoveBracesLLVM: true +RemoveEmptyLinesInUnwrappedLines: true +RemoveParentheses: ReturnStatement +RemoveSemicolon: true +RequiresClausePosition: OwnLine +RequiresExpressionIndentation: OuterScope SeparateDefinitionBlocks: Always -SortIncludes: true +ShortNamespaceLines: 0 +SkipMacroDefinitionBody: false +SortIncludes: + Enabled: true + IgnoreCase: false + IgnoreExtension: false +SortUsingDeclarations: Lexicographic SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceAfterOperatorKeyword: false +SpaceAfterTemplateKeyword: true +SpaceAroundPointerQualifiers: Default SpaceBeforeAssignmentOperators: true +SpaceBeforeCaseColon: false +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true SpaceBeforeParens: ControlStatements -SpaceInEmptyParentheses: false +SpaceBeforeParensOptions: + AfterControlStatements: true + AfterForeachMacros: true + AfterFunctionDefinitionName: false + AfterFunctionDeclarationName: false + AfterIfMacros: true + AfterNot: false + AfterOverloadedOperator: false + AfterPlacementOperator: true + AfterRequiresInClause: false + AfterRequiresInExpression: false + BeforeNonEmptyParentheses: false +SpaceBeforeRangeBasedForLoopColon: true +SpaceBeforeSquareBrackets: false +SpaceInEmptyBraces: Never SpacesBeforeTrailingComments: 2 -SpacesInAngles: false +SpacesInAngles: Never SpacesInContainerLiterals: true -SpacesInCStyleCastParentheses: false -SpacesInParentheses: false +SpacesInLineCommentPrefix: + Minimum: 1 + Maximum: -1 +SpacesInParens: Never +SpacesInParensOptions: + ExceptDoubleParentheses: false + InCStyleCasts: false + InConditionalStatements: false + InEmptyParentheses: false + Other: false SpacesInSquareBrackets: false Standard: c++17 +StatementAttributeLikeMacros: [ ] +StatementMacros: [ ] +TableGenBreakInsideDAGArg: DontBreak TabWidth: 4 UseTab: Never -WhitespaceSensitiveMacros: [ "SEAD_ENUM", "SEAD_ENUM_EX", "SEAD_ENUM_EX_VALUES" ] +WhitespaceSensitiveMacros: + - SEAD_ENUM + - SEAD_ENUM_EX + - SEAD_ENUM_EX_VALUES +WrapNamespaceBodyWithEmptyLines: Leave ... From 87e767932c0279465bbaa184610a969fb677fba3 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:15:45 +0100 Subject: [PATCH 02/25] fix:lint --- .clang-format | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) diff --git a/.clang-format b/.clang-format index 570593c9..24d6d129 100644 --- a/.clang-format +++ b/.clang-format @@ -5,66 +5,20 @@ AlignAfterOpenBracket: Align AlignArrayOfStructures: None AlignConsecutiveAssignments: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: false - AlignFunctionPointers: false - PadOperators: true AlignConsecutiveBitFields: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: false - AlignFunctionPointers: false - PadOperators: false AlignConsecutiveDeclarations: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: true - AlignFunctionPointers: false - PadOperators: false AlignConsecutiveMacros: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: false - AlignFunctionPointers: false - PadOperators: false AlignConsecutiveShortCaseStatements: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCaseArrows: false - AlignCaseColons: false AlignConsecutiveTableGenBreakingDAGArgColons: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: false - AlignFunctionPointers: false - PadOperators: false AlignConsecutiveTableGenCondOperatorColons: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: false - AlignFunctionPointers: false - PadOperators: false AlignConsecutiveTableGenDefinitionColons: Enabled: false - AcrossEmptyLines: false - AcrossComments: false - AlignCompound: false - AlignFunctionDeclarations: false - AlignFunctionPointers: false - PadOperators: false AlignEscapedNewlines: Right AlignOperands: AlignAfterOperator AlignTrailingComments: From e22dccee2d5fb952f7badab57b791a1737eb70d5 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:16:56 +0100 Subject: [PATCH 03/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 24d6d129..d169e1f3 100644 --- a/.clang-format +++ b/.clang-format @@ -41,7 +41,7 @@ AlwaysBreakBeforeMultilineStrings: false AttributeMacros: [ ] BinPackArguments: true BinPackLongBracedList: true -BinPackParameters: BinPack +BinPackParameters: true BitFieldColonSpacing: Both BracedInitializerIndentWidth: -1 BraceWrapping: From fceb4ccfd628ffa3af92fedd9d253ac8fe56422f Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:19:33 +0100 Subject: [PATCH 04/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index d169e1f3..f83dff52 100644 --- a/.clang-format +++ b/.clang-format @@ -43,7 +43,7 @@ BinPackArguments: true BinPackLongBracedList: true BinPackParameters: true BitFieldColonSpacing: Both -BracedInitializerIndentWidth: -1 +BracedInitializerIndentWidth: 4 BraceWrapping: AfterCaseLabel: false AfterClass: false From ef83a95dd7642eaf23acd8b7df4e29ddb65e3a49 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:21:09 +0100 Subject: [PATCH 05/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index f83dff52..79c049af 100644 --- a/.clang-format +++ b/.clang-format @@ -160,7 +160,7 @@ PointerAlignment: Left PPIndentWidth: -1 QualifierAlignment: Left ReferenceAlignment: Pointer -ReflowComments: Always +ReflowComments: true # Always RemoveBracesLLVM: true RemoveEmptyLinesInUnwrappedLines: true RemoveParentheses: ReturnStatement From 8de47629fe770407bf354d8576eaab3ff2ecf9a2 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:23:00 +0100 Subject: [PATCH 06/25] fix:lint --- .clang-format | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.clang-format b/.clang-format index 79c049af..8ae3e576 100644 --- a/.clang-format +++ b/.clang-format @@ -170,10 +170,7 @@ RequiresExpressionIndentation: OuterScope SeparateDefinitionBlocks: Always ShortNamespaceLines: 0 SkipMacroDefinitionBody: false -SortIncludes: - Enabled: true - IgnoreCase: false - IgnoreExtension: false +SortIncludes: true SortUsingDeclarations: Lexicographic SpaceAfterCStyleCast: false SpaceAfterLogicalNot: false From 0012dfc216cf256be1e5380cd02d78f1af9ad4ca Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:28:36 +0100 Subject: [PATCH 07/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 8ae3e576..9a6fd9b6 100644 --- a/.clang-format +++ b/.clang-format @@ -189,7 +189,7 @@ SpaceBeforeParensOptions: AfterFunctionDefinitionName: false AfterFunctionDeclarationName: false AfterIfMacros: true - AfterNot: false + # AfterNot: false AfterOverloadedOperator: false AfterPlacementOperator: true AfterRequiresInClause: false From 7f82049ea911b6f22fa57048592e58e63a387148 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:30:44 +0100 Subject: [PATCH 08/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 9a6fd9b6..b7621787 100644 --- a/.clang-format +++ b/.clang-format @@ -206,7 +206,7 @@ SpacesInLineCommentPrefix: Maximum: -1 SpacesInParens: Never SpacesInParensOptions: - ExceptDoubleParentheses: false + # ExceptDoubleParentheses: false InCStyleCasts: false InConditionalStatements: false InEmptyParentheses: false From b3d6af16dbe5f5734f2e823dbef15e880e6869d8 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:32:10 +0100 Subject: [PATCH 09/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index b7621787..a2aa0f07 100644 --- a/.clang-format +++ b/.clang-format @@ -174,7 +174,7 @@ SortIncludes: true SortUsingDeclarations: Lexicographic SpaceAfterCStyleCast: false SpaceAfterLogicalNot: false -SpaceAfterOperatorKeyword: false +# SpaceAfterOperatorKeyword: false SpaceAfterTemplateKeyword: true SpaceAroundPointerQualifiers: Default SpaceBeforeAssignmentOperators: true From 9507bae0d70be36b8835d5b031d0dd470598403e Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:33:44 +0100 Subject: [PATCH 10/25] fix:lint --- .clang-format | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.clang-format b/.clang-format index a2aa0f07..f5961c21 100644 --- a/.clang-format +++ b/.clang-format @@ -75,7 +75,7 @@ BreakBeforeTemplateCloser: false BreakBeforeTernaryOperators: false BreakBinaryOperations: Never BreakConstructorInitializers: BeforeColon -BreakFunctionDefinitionParameters: false +#BreakFunctionDefinitionParameters: false BreakInheritanceList: BeforeColon BreakStringLiterals: true BreakTemplateDeclarations: Yes @@ -174,7 +174,7 @@ SortIncludes: true SortUsingDeclarations: Lexicographic SpaceAfterCStyleCast: false SpaceAfterLogicalNot: false -# SpaceAfterOperatorKeyword: false +#SpaceAfterOperatorKeyword: false SpaceAfterTemplateKeyword: true SpaceAroundPointerQualifiers: Default SpaceBeforeAssignmentOperators: true @@ -189,7 +189,7 @@ SpaceBeforeParensOptions: AfterFunctionDefinitionName: false AfterFunctionDeclarationName: false AfterIfMacros: true - # AfterNot: false + #AfterNot: false AfterOverloadedOperator: false AfterPlacementOperator: true AfterRequiresInClause: false @@ -206,7 +206,7 @@ SpacesInLineCommentPrefix: Maximum: -1 SpacesInParens: Never SpacesInParensOptions: - # ExceptDoubleParentheses: false + #ExceptDoubleParentheses: false InCStyleCasts: false InConditionalStatements: false InEmptyParentheses: false From fc372da90056def3748e9a33f2591c2f192896a1 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:34:46 +0100 Subject: [PATCH 11/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index f5961c21..21a011ce 100644 --- a/.clang-format +++ b/.clang-format @@ -40,7 +40,7 @@ AllowShortNamespacesOnASingleLine: false AlwaysBreakBeforeMultilineStrings: false AttributeMacros: [ ] BinPackArguments: true -BinPackLongBracedList: true +#BinPackLongBracedList: true BinPackParameters: true BitFieldColonSpacing: Both BracedInitializerIndentWidth: 4 From 63ba83d29061f70b37448464376d3c14660c3a74 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:35:48 +0100 Subject: [PATCH 12/25] fix:lint --- .clang-format | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.clang-format b/.clang-format index 21a011ce..2ffcb1b4 100644 --- a/.clang-format +++ b/.clang-format @@ -13,8 +13,8 @@ AlignConsecutiveMacros: Enabled: false AlignConsecutiveShortCaseStatements: Enabled: false -AlignConsecutiveTableGenBreakingDAGArgColons: - Enabled: false +#AlignConsecutiveTableGenBreakingDAGArgColons: +# Enabled: false AlignConsecutiveTableGenCondOperatorColons: Enabled: false AlignConsecutiveTableGenDefinitionColons: From 001d161c395ca777f7a13aedca924d906015bc36 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:37:30 +0100 Subject: [PATCH 13/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 2ffcb1b4..341846b0 100644 --- a/.clang-format +++ b/.clang-format @@ -139,7 +139,7 @@ LambdaBodyIndentation: Signature LineEnding: LF MacroBlockBegin: '' MacroBlockEnd: '' -MainIncludeChar: Quote +#MainIncludeChar: Quote MaxEmptyLinesToKeep: 1 NamespaceIndentation: None OneLineFormatOffRegex: '' From 74d299330035c1ad375c3b88ca927f69d0cceabd Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:38:21 +0100 Subject: [PATCH 14/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 341846b0..f070773f 100644 --- a/.clang-format +++ b/.clang-format @@ -215,7 +215,7 @@ SpacesInSquareBrackets: false Standard: c++17 StatementAttributeLikeMacros: [ ] StatementMacros: [ ] -TableGenBreakInsideDAGArg: DontBreak +#TableGenBreakInsideDAGArg: DontBreak TabWidth: 4 UseTab: Never WhitespaceSensitiveMacros: From 67c362e2d1e9ebcf280366b5b7f1cc7680302b1c Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:39:43 +0100 Subject: [PATCH 15/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index f070773f..f80c5cfc 100644 --- a/.clang-format +++ b/.clang-format @@ -113,7 +113,7 @@ IncludeIsMainSourceRegex: '' IndentAccessModifiers: false IndentCaseBlocks: false IndentCaseLabels: false -IndentExportBlock: true +#IndentExportBlock: true IndentExternBlock: AfterExternBlock IndentGotoLabels: true IndentPPDirectives: None From 113bb8237aa6de5b6f73c7fe6422dd16651292e2 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:40:30 +0100 Subject: [PATCH 16/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index f80c5cfc..40c7c72c 100644 --- a/.clang-format +++ b/.clang-format @@ -73,7 +73,7 @@ BreakBeforeBraces: Attach BreakBeforeInlineASMColon: OnlyMultiline BreakBeforeTemplateCloser: false BreakBeforeTernaryOperators: false -BreakBinaryOperations: Never +#BreakBinaryOperations: Never BreakConstructorInitializers: BeforeColon #BreakFunctionDefinitionParameters: false BreakInheritanceList: BeforeColon From f6cf34bb09df28cba4b604638c0d648d846ecff8 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:42:15 +0100 Subject: [PATCH 17/25] fix:lint --- .clang-format | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.clang-format b/.clang-format index 40c7c72c..92900be0 100644 --- a/.clang-format +++ b/.clang-format @@ -15,10 +15,10 @@ AlignConsecutiveShortCaseStatements: Enabled: false #AlignConsecutiveTableGenBreakingDAGArgColons: # Enabled: false -AlignConsecutiveTableGenCondOperatorColons: - Enabled: false -AlignConsecutiveTableGenDefinitionColons: - Enabled: false +#AlignConsecutiveTableGenCondOperatorColons: +# Enabled: false +#AlignConsecutiveTableGenDefinitionColons: +# Enabled: false AlignEscapedNewlines: Right AlignOperands: AlignAfterOperator AlignTrailingComments: From d312a3dd6474a15d911b1de724563b68e1f4aa13 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:43:42 +0100 Subject: [PATCH 18/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 92900be0..0ef2c687 100644 --- a/.clang-format +++ b/.clang-format @@ -146,7 +146,7 @@ OneLineFormatOffRegex: '' PackConstructorInitializers: BinPack PenaltyBreakAssignment: 2 PenaltyBreakBeforeFirstCallParameter: 19 -PenaltyBreakBeforeMemberAccess: 150 +#PenaltyBreakBeforeMemberAccess: 150 PenaltyBreakComment: 300 PenaltyBreakFirstLessLess: 120 PenaltyBreakOpenParenthesis: 0 From 65e658d93a53c9d165a5a0728656dc59595bcda5 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:44:56 +0100 Subject: [PATCH 19/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 0ef2c687..60e46545 100644 --- a/.clang-format +++ b/.clang-format @@ -162,7 +162,7 @@ QualifierAlignment: Left ReferenceAlignment: Pointer ReflowComments: true # Always RemoveBracesLLVM: true -RemoveEmptyLinesInUnwrappedLines: true +#RemoveEmptyLinesInUnwrappedLines: true RemoveParentheses: ReturnStatement RemoveSemicolon: true RequiresClausePosition: OwnLine From fc7d25f52baaf65c146eb2e6d3ad1700584ff464 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:46:13 +0100 Subject: [PATCH 20/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 60e46545..d61e5285 100644 --- a/.clang-format +++ b/.clang-format @@ -142,7 +142,7 @@ MacroBlockEnd: '' #MainIncludeChar: Quote MaxEmptyLinesToKeep: 1 NamespaceIndentation: None -OneLineFormatOffRegex: '' +#OneLineFormatOffRegex: '' PackConstructorInitializers: BinPack PenaltyBreakAssignment: 2 PenaltyBreakBeforeFirstCallParameter: 19 From 6f8725d4e5b498433dba933dbe217cbfc6ba8268 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:47:00 +0100 Subject: [PATCH 21/25] fix:lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index d61e5285..8b687325 100644 --- a/.clang-format +++ b/.clang-format @@ -71,7 +71,7 @@ BreakBeforeBinaryOperators: None BreakBeforeConceptDeclarations: Always BreakBeforeBraces: Attach BreakBeforeInlineASMColon: OnlyMultiline -BreakBeforeTemplateCloser: false +#BreakBeforeTemplateCloser: false BreakBeforeTernaryOperators: false #BreakBinaryOperations: Never BreakConstructorInitializers: BeforeColon From abaa9490c563d722fb8654b82d3abd6acc640003 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:48:02 +0100 Subject: [PATCH 22/25] fix:lint --- .clang-format | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.clang-format b/.clang-format index 8b687325..0204ac62 100644 --- a/.clang-format +++ b/.clang-format @@ -130,10 +130,10 @@ IntegerLiteralSeparator: DecimalMinDigits: 0 Hex: 0 HexMinDigits: 0 -KeepEmptyLines: - AtEndOfFile: false - AtStartOfBlock: false - AtStartOfFile: false +#KeepEmptyLines: +# AtEndOfFile: false +# AtStartOfBlock: false +# AtStartOfFile: false KeepFormFeed: false LambdaBodyIndentation: Signature LineEnding: LF From a0bb266457008bdf94f09a2695fe93dc5494d845 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Sun, 22 Feb 2026 21:57:13 +0100 Subject: [PATCH 23/25] fix:lint --- .clang-format | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.clang-format b/.clang-format index 0204ac62..fa783adc 100644 --- a/.clang-format +++ b/.clang-format @@ -28,7 +28,7 @@ AllowAllArgumentsOnNextLine: true AllowAllParametersOfDeclarationOnNextLine: true AllowBreakBeforeNoexceptSpecifier: Never AllowShortBlocksOnASingleLine: Never -AllowShortCaseExpressionOnASingleLine: true +#AllowShortCaseExpressionOnASingleLine: true AllowShortCaseLabelsOnASingleLine: false AllowShortCompoundRequirementOnASingleLine: true AllowShortEnumsOnASingleLine: true @@ -36,14 +36,14 @@ AllowShortFunctionsOnASingleLine: Inline AllowShortIfStatementsOnASingleLine: Never AllowShortLambdasOnASingleLine: All AllowShortLoopsOnASingleLine: false -AllowShortNamespacesOnASingleLine: false +#AllowShortNamespacesOnASingleLine: false AlwaysBreakBeforeMultilineStrings: false AttributeMacros: [ ] BinPackArguments: true #BinPackLongBracedList: true BinPackParameters: true BitFieldColonSpacing: Both -BracedInitializerIndentWidth: 4 +BracedInitializerIndentWidth: 4 #-1 BraceWrapping: AfterCaseLabel: false AfterClass: false @@ -65,7 +65,7 @@ BraceWrapping: SplitEmptyNamespace: true BreakAdjacentStringLiterals: true BreakAfterAttributes: Leave -BreakAfterReturnType: None +#BreakAfterReturnType: None BreakArrays: true BreakBeforeBinaryOperators: None BreakBeforeConceptDeclarations: Always @@ -78,7 +78,7 @@ BreakConstructorInitializers: BeforeColon #BreakFunctionDefinitionParameters: false BreakInheritanceList: BeforeColon BreakStringLiterals: true -BreakTemplateDeclarations: Yes +#BreakTemplateDeclarations: Yes ColumnLimit: 100 CommentPragmas: '^ (IWYU pragma:|NOLINT)' CompactNamespaces: false @@ -89,7 +89,7 @@ DerivePointerAlignment: false DisableFormat: false EmptyLineAfterAccessModifier: Never EmptyLineBeforeAccessModifier: LogicalBlock -EnumTrailingComma: Remove +#EnumTrailingComma: Remove FixNamespaceComments: true ForEachMacros: - FOR_EACH @@ -134,7 +134,7 @@ IntegerLiteralSeparator: # AtEndOfFile: false # AtStartOfBlock: false # AtStartOfFile: false -KeepFormFeed: false +#KeepFormFeed: false LambdaBodyIndentation: Signature LineEnding: LF MacroBlockBegin: '' @@ -197,7 +197,7 @@ SpaceBeforeParensOptions: BeforeNonEmptyParentheses: false SpaceBeforeRangeBasedForLoopColon: true SpaceBeforeSquareBrackets: false -SpaceInEmptyBraces: Never +#SpaceInEmptyBraces: Never SpacesBeforeTrailingComments: 2 SpacesInAngles: Never SpacesInContainerLiterals: true @@ -222,5 +222,5 @@ WhitespaceSensitiveMacros: - SEAD_ENUM - SEAD_ENUM_EX - SEAD_ENUM_EX_VALUES -WrapNamespaceBodyWithEmptyLines: Leave +#WrapNamespaceBodyWithEmptyLines: Leave ... From fdae6ca4fabe371af1cb501980537fa1b49902fa Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Wed, 25 Feb 2026 21:17:40 +0100 Subject: [PATCH 24/25] fix:template lint --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index fa783adc..a0cbc01e 100644 --- a/.clang-format +++ b/.clang-format @@ -78,7 +78,7 @@ BreakConstructorInitializers: BeforeColon #BreakFunctionDefinitionParameters: false BreakInheritanceList: BeforeColon BreakStringLiterals: true -#BreakTemplateDeclarations: Yes +AlwaysBreakTemplateDeclarations: Yes #BreakTemplateDeclarations: Yes ColumnLimit: 100 CommentPragmas: '^ (IWYU pragma:|NOLINT)' CompactNamespaces: false From 858929f0f3991b53a46c30e0bd89a1a1a0de1fb8 Mon Sep 17 00:00:00 2001 From: Fuzzy2319 Date: Wed, 25 Feb 2026 21:52:02 +0100 Subject: [PATCH 25/25] fix:lint --- .clang-format | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.clang-format b/.clang-format index a0cbc01e..6fa3098e 100644 --- a/.clang-format +++ b/.clang-format @@ -119,7 +119,7 @@ IndentGotoLabels: true IndentPPDirectives: None IndentRequiresClause: true IndentWidth: 4 -IndentWrappedFunctionNames: true +IndentWrappedFunctionNames: false InsertBraces: false InsertNewlineAtEOF: true InsertTrailingCommas: None @@ -139,6 +139,8 @@ LambdaBodyIndentation: Signature LineEnding: LF MacroBlockBegin: '' MacroBlockEnd: '' +#MacrosSkippedByRemoveParentheses: +# - SENSOR_MSG_WITH_DATA_CUSTOM_CTOR #MainIncludeChar: Quote MaxEmptyLinesToKeep: 1 NamespaceIndentation: None @@ -163,7 +165,7 @@ ReferenceAlignment: Pointer ReflowComments: true # Always RemoveBracesLLVM: true #RemoveEmptyLinesInUnwrappedLines: true -RemoveParentheses: ReturnStatement +RemoveParentheses: Leave #ReturnStatement RemoveSemicolon: true RequiresClausePosition: OwnLine RequiresExpressionIndentation: OuterScope