25 lines
		
	
	
		
			477 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			477 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | # Config for clang-format version 16 | ||
|  | 
 | ||
|  | # standard | ||
|  | BasedOnStyle: llvm | ||
|  | Standard: c++14 | ||
|  | 
 | ||
|  | # Indentation | ||
|  | IndentWidth: 2 | ||
|  | ColumnLimit: 140 | ||
|  | 
 | ||
|  | # Includes | ||
|  | SortIncludes: true | ||
|  | SortUsingDeclarations: true | ||
|  | 
 | ||
|  | # Pointer and reference alignment | ||
|  | PointerAlignment: Left | ||
|  | ReferenceAlignment: Left | ||
|  | ReflowComments: true | ||
|  | 
 | ||
|  | # Line breaking options | ||
|  | BreakBeforeBraces: Attach | ||
|  | BreakConstructorInitializers: BeforeColon | ||
|  | AllowShortFunctionsOnASingleLine: Empty | ||
|  | IndentCaseLabels: true | ||
|  | NamespaceIndentation: Inner |