summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-09 20:17:02 +0800
committerruki <[email protected]>2025-11-09 20:17:02 +0800
commit55ae4a3b86e51d80c77e631db7270c5e5a2af2fb (patch)
tree88ef5c02db51dc7fe9a16946cf920526276fcebd /core
parent12e00a411dfe202dcfa1de9a8511a802ce1af40d (diff)
mv clang-format to root
Diffstat (limited to 'core')
-rw-r--r--core/.clang-format82
1 files changed, 0 insertions, 82 deletions
diff --git a/core/.clang-format b/core/.clang-format
deleted file mode 100644
index 2fbb26713..000000000
--- a/core/.clang-format
+++ /dev/null
@@ -1,82 +0,0 @@
----
-Language: Cpp
-BasedOnStyle: LLVM
-DisableFormat: false
-
-# Indentation
-IndentWidth: 4
-ContinuationIndentWidth: 4
-TabWidth: 4
-UseTab: Never
-
-# Braces
-BreakBeforeBraces: Attach
-
-# Alignment
-AlignAfterOpenBracket: Align
-AlignTrailingComments: true
-AlignConsecutiveAssignments: Consecutive
-AlignConsecutiveBitFields: None
-AlignConsecutiveDeclarations: Consecutive
-AlignConsecutiveMacros: None
-
-# Spacing
-SpaceAfterCStyleCast: false
-SpaceBeforeAssignmentOperators: true
-SpaceBeforeParens: ControlStatements
-SpacesBeforeTrailingComments: 1
-
-# Column limit
-ColumnLimit: 120
-
-# Short constructs
-AllowShortBlocksOnASingleLine: Never
-AllowShortCaseLabelsOnASingleLine: false
-AllowShortEnumsOnASingleLine: false
-AllowShortFunctionsOnASingleLine: None
-AllowShortIfStatementsOnASingleLine: Never
-AllowShortLoopsOnASingleLine: false
-
-# Line breaking
-AlwaysBreakAfterReturnType: None
-BreakBeforeBinaryOperators: None
-BreakBeforeTernaryOperators: true
-
-# Functions
-IndentWrappedFunctionNames: false
-MaxEmptyLinesToKeep: 1
-
-# Includes
-IncludeBlocks: Preserve
-SortIncludes: Never
-
-# Initializers
-AllowAllConstructorInitializersOnNextLine: true
-ConstructorInitializerAllOnOneLineOrOnePerLine: true
-ConstructorInitializerIndentWidth: 4
-Cpp11BracedListStyle: false
-BinPackArguments: false
-BinPackParameters: false
-
-# Preprocessor/Macros
-IndentPPDirectives: None
-
-# Misc
-KeepEmptyLinesAtTheStartOfBlocks: false
-ReflowComments: false
-SeparateDefinitionBlocks: Leave
-
-# Penalties
-PenaltyBreakAssignment: 100
-PenaltyBreakBeforeFirstCallParameter: 100
-PenaltyBreakComment: 300
-PenaltyBreakFirstLessLess: 120
-PenaltyBreakString: 1000
-PenaltyExcessCharacter: 1000000
-PenaltyReturnTypeOnItsOwnLine: 1000
-PenaltyBreakTemplateDeclaration: 1000
-
----
-Language: ObjC
-BasedOnStyle: LLVM
-DisableFormat: true