2015-09-23 15:52:44 +00:00
|
|
|
# Bracket Style
|
|
|
|
style=kr # K&R brackets
|
2017-12-12 20:02:55 +00:00
|
|
|
j # Add braces to one-line conditional statements
|
2017-12-07 23:23:48 +00:00
|
|
|
keep-one-line-blocks # Don't break blocks that are on one line
|
2015-09-23 15:52:44 +00:00
|
|
|
|
|
|
|
# Indentation
|
|
|
|
indent=force-tab=8 # Use tabs for indentation, spaces for minor alignment
|
|
|
|
min-conditional-indent=0
|
|
|
|
|
|
|
|
# Padding
|
|
|
|
unpad-paren # Remove all spaces with parens that aren't requested below
|
|
|
|
pad-oper # Put spaces around operators
|
|
|
|
pad-header # Put spaces between if/while/for etc. and the first paren
|
|
|
|
|
|
|
|
# Pointers
|
|
|
|
align-pointer=name # Align the * next to the variable name
|
|
|
|
|
|
|
|
# Line wrapping
|
|
|
|
max-code-length=100 # 100 character line limit
|
|
|
|
break-after-logical # For if statements, wrap to the next line after logical operator
|
|
|
|
|
|
|
|
# Line endings
|
|
|
|
lineend=linux # LF line endings
|
|
|
|
|
|
|
|
# General options
|
|
|
|
suffix=none
|
|
|
|
formatted
|