-
Notifications
You must be signed in to change notification settings - Fork 2
/
.astylerc
66 lines (39 loc) · 1.02 KB
/
.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# astyle configuration file
# http://astyle.sourceforge.net/astyle.html
# Brace style
--style=java
# Indents
--indent=force-tab=4
# Switch statements
--indent-switches
# Break long conditionals
--break-after-logical
# Indent pre-processor directives
--indent-preproc-block
--indent-preproc-define
# --indent-preproc-cond
# Line endings
--lineend=linux
# Add brackets to one-liners
--add-brackets
# Pad with blank lines
--break-blocks
# Pad with spaces
--pad-oper
--pad-header
# Pointers/References
--align-pointer=middle
--align-reference=name
# Line endings
--lineend=linux
# Excludes
--exclude="Sources/libMultiMarkdown/scanners.c"
--exclude="Sources/libMultiMarkdown/parser.c"
--exclude="Sources/libMultiMarkdown/lexer.c"
--exclude="Sources/libMultiMarkdown/i18n.h"
--exclude="Sources/libMultiMarkdown/miniz.c"
--exclude="Sources/libMultiMarkdown/miniz.h"
--exclude="Sources/libMultiMarkdown/uthash.h"
--exclude="Sources/multimarkdown/argtable3.c"
--exclude="Sources/multimarkdown/argtable3.h"
--ignore-exclude-errors