-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharmarx.astylerc
48 lines (33 loc) · 1020 Bytes
/
armarx.astylerc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# http://astyle.sourceforge.net/astyle.html
#
#
# Predefined style option -A3
--style=allman
# Indent using 4 spaces per indent. Don't use tab -s4
--indent=spaces=4
# Indent 'switch' blocks so that the 'case X:' statement are
# indented in the switch block. -S
--indent-switches
# Indent multi-line preprocessor definitions ending with a backslash -w
--indent-preprocessor
# Pad empty lines around header blocks (eg. 'if', 'while' ...) -f
--break-blocks
# Delete empty lines within a function or method. -x
#--delete-empty-lines
# Insert space padding around operators. -p
--pad-oper
--pad-header
# Remove extra space padding around parenthesis on the inside and outside -U
--unpad-paren
# Converts tabs into spaces in the non-indentation part of the line -c
--convert-tabs
# Do not retain a backup of the origional file
--suffix=none
--indent-namespaces
--indent-col1-comments
--min-conditional-indent=0
--align-pointer=type
#--align-reference=type
--add-brackets
#--break-after-logical
--lineend=linux