occlum/.astylerc
2020-07-01 21:22:29 +08:00

26 lines
605 B
Plaintext

# Bracket style
style=java #
j # Add braces to one-line conditional statements
keep-one-line-blocks # Don't break blocks that are on one line
# Indent style
indent-switches
indent=spaces
# Padding
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=90 # 90 character line limit
break-after-logical # For if statements, wrap to the next line after logical operator
# Line endings
lineend=linux # LF line endings
# No backup file
suffix=none