add new format make target

This commit is contained in:
Steffen Jaeckel
2020-01-03 21:12:20 +02:00
committed by Dmitry Podgorny
parent abd1b08a97
commit 2e21d5a021
2 changed files with 23 additions and 0 deletions

17
_clang-format Normal file
View File

@@ -0,0 +1,17 @@
---
AlignConsecutiveAssignments: 'false'
AlignEscapedNewlines: Left
AllowShortBlocksOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: 'false'
BinPackParameters: 'false'
BreakBeforeBraces: Linux
ColumnLimit: '80'
DerivePointerAlignment: 'false'
IndentWidth: '4'
PointerAlignment: Right
SortIncludes: 'false'
TabWidth: '4'
UseTab: Never
...