feat: add language specific project configs

This commit is contained in:
2025-09-06 01:34:46 +02:00
parent 4200a717d9
commit dba3dd424d
5 changed files with 89 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
---
BasedOnStyle: LLVM
AlignAfterOpenBracket: BlockIndent
AlignArrayOfStructures: Left
AlignEscapedNewlines: Right
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
BinPackArguments: false
BinPackParameters: false
BreakBeforeBraces: WebKit
BreakConstructorInitializers: AfterColon
BreakInheritanceList: AfterColon
IncludeBlocks: Regroup
IncludeIsMainRegex: '(_test)?$'
IndentWidth: 4
LineEnding: LF
PackConstructorInitializers: Never
PenaltyBreakAssignment: 100
PointerAlignment: Left
QualifierAlignment: Right
Standard: Latest
WhitespaceSensitiveMacros:
- STRINGIZE
- STRINGIZE_VALUE
...