1# Allman Coding Style Options
2# Based on an old AStyle release.
3
4# braces and indent
5style=allman
6# indent=spaces    # this is the default
7
8# indentation
9min-conditional-indent=0
10max-continuation-indent=80
11
12# padding
13pad-oper
14pad-header
15unpad-paren
16align-pointer=type
17
18# formatting
19break-one-line-headers
20keep-one-line-blocks
21keep-one-line-statements
22convert-tabs
23