From 40f58d7f7999db1465a550cb9fd44c385371bf7c Mon Sep 17 00:00:00 2001 From: jl3952 Date: Thu, 15 Feb 2024 15:43:49 -0500 Subject: [PATCH] clean --- .clang-format | 62 --------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 .clang-format diff --git a/.clang-format b/.clang-format deleted file mode 100644 index 0158d09..0000000 --- a/.clang-format +++ /dev/null @@ -1,62 +0,0 @@ -# clang-format config from Jonathan Pfeifer -BasedOnStyle: google -AllowShortBlocksOnASingleLine: false -AllowShortFunctionsOnASingleLine: None -AllowShortIfStatementsOnASingleLine: false -AllowShortLoopsOnASingleLine: false -BraceWrapping: - AfterClass: false - AfterControlStatement: false - AfterEnum: false - AfterFunction: true - AfterNamespace: false - AfterObjCDeclaration: false - AfterStruct: false - AfterUnion: false - BeforeCatch: false - BeforeElse: true - IndentBraces: false - SplitEmptyFunction: true - SplitEmptyRecord: true - SplitEmptyNamespace: true -BreakBeforeBraces: Custom -BreakBeforeTernaryOperators: false -BreakConstructorInitializers: BeforeColon -BreakStringLiterals: false -IncludeCategories: - - Regex: '.*' - Priority: 1 - - Regex: '^(<|"(gtest|gmock|isl|json)/)' - Priority: 3 - - Regex: '.*' - Priority: 1 -IncludeIsMainRegex: '(_test)?$' -IndentCaseLabels: true -IndentWidth: 2 -IndentWrappedFunctionNames: false -KeepEmptyLinesAtTheStartOfBlocks: false -MaxEmptyLinesToKeep: 1 -NamespaceIndentation: None -PointerAlignment: Left -ReflowComments: true -SortIncludes: true -SpaceAfterCStyleCast: true -SpaceBeforeAssignmentOperators: true -SpaceBeforeParens: ControlStatements -SpaceInEmptyParentheses: false -SpacesBeforeTrailingComments: 2 -SpacesInAngles: false -SpacesInCStyleCastParentheses: false -SpacesInParentheses: true -SpacesInSquareBrackets: false -UseTab: Never -# PP: add more configurations specific to alignment -AlignAfterOpenBracket: Align -AlignConsecutiveAssignments: true -AlignConsecutiveDeclarations: true -AlignEscapedNewlines: Left -AlignOperands: true -AlignTrailingComments: true -# PP: comment pragmas -- don't break comments like this -CommentPragmas: '^(:|>|<)' -ColumnLimit: 80