mirror of
https://github.com/ModOrganizer2/mob.git
synced 2026-07-27 14:07:05 -07:00
27 lines
698 B
YAML
27 lines
698 B
YAML
---
|
|||
|
|
# We'll use defaults from the LLVM style, but with 4 columns indentation.
|
||
|
|
BasedOnStyle: LLVM
|
||
|
|
IndentWidth: 4
|
||
|
|
---
|
||
|
|
Language: Cpp
|
||
|
|
# Force pointers to the type for C++.
|
||
|
|
DerivePointerAlignment: false
|
||
|
|
PointerAlignment: Left
|
||
|
|
AlignConsecutiveAssignments: true
|
||
|
|
AllowShortFunctionsOnASingleLine: Inline
|
||
|
|
AllowShortIfStatementsOnASingleLine: Never
|
||
|
|
AllowShortLambdasOnASingleLine: Empty
|
||
|
|
AlwaysBreakTemplateDeclarations: Yes
|
||
|
|
AccessModifierOffset: -4
|
||
|
|
AlignTrailingComments: true
|
||
|
|
SpacesBeforeTrailingComments: 2
|
||
|
|
NamespaceIndentation: All
|
||
|
|
MaxEmptyLinesToKeep: 1
|
||
|
|
BreakBeforeBraces: Stroustrup
|
||
|
|
ColumnLimit: 88
|
||
|
|
IncludeBlocks: Preserve
|
||
|
|
IncludeCategories:
|
||
|
|
- Regex: '^"pch.h"$'
|
||
|
|
Priority: -1
|
||
|
|
SortPriority: -1
|