1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Add .clang-format style file (#4836)

[ci skip]
This commit is contained in:
Michał Janiszewski
2016-11-30 19:01:02 +01:00
committed by GitHub
parent a9eb93ce88
commit 46fbac9564

16
.clang-format Normal file
View File

@@ -0,0 +1,16 @@
---
BasedOnStyle: LLVM
AccessModifierOffset: '-4'
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
AllowShortFunctionsOnASingleLine: Empty
BreakBeforeBraces: Allman
ColumnLimit: '128'
Cpp11BracedListStyle: 'false'
IndentWidth: '4'
PointerAlignment: Middle
SortIncludes: 'true'
Standard: Cpp11
TabWidth: '4'
...