.astylerc (890B)
1 --style=stroustrup # Stroustrup-style braces 2 --indent=spaces=2 # 2-space indent 3 --indent-preprocessor # Indent macro continuation lines 4 --min-conditional-indent=0 # Don't indent 2nd-line of conditional expr 5 --pad-oper # Pad operators 6 --pad-header # Pad between for, if, while and paren 7 --unpad-paren # Remove useless padding in/around parens 8 --align-pointer=name # Align * and & with var/param name 9 --convert-tabs # Eliminate all tabs 10 --close-templates # C++11 templates 11 --max-code-length=80 # 80-col max 12 --lineend=linux # \n 13 --align-method-colon # ObjC: Align colons in method decls 14 --pad-method-prefix # ObjC: Insert a space after the -/+ prefix 15 --pad-method-colon=none # ObjC: No padding before/after colons in calls