Created
December 20, 2013 17:25
-
-
Save bhagman/8058279 to your computer and use it in GitHub Desktop.
My standard AStyle parameters for C/C++ source.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AStyle: http://astyle.sourceforge.net/ | |
# | |
# C/C++ Standard code formatting - Brett Hagman | |
# | |
# Allman, 2 space indent, indent classes, | |
# space padding around operators, space padding, | |
# remove extra space padding around parentheses, | |
# convert all tabs to spaces, indent switches, | |
# indent cases | |
--style=allman | |
--indent=spaces=2 | |
--indent-classes | |
--unpad-paren | |
--pad-oper | |
--pad-header | |
--convert-tabs | |
--indent-switches | |
--indent-cases |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment