aboutsummaryrefslogtreecommitdiff
path: root/contrib/uncrustify.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/uncrustify.cfg')
-rw-r--r--contrib/uncrustify.cfg95
1 files changed, 0 insertions, 95 deletions
diff --git a/contrib/uncrustify.cfg b/contrib/uncrustify.cfg
deleted file mode 100644
index 8c9df2c43..000000000
--- a/contrib/uncrustify.cfg
+++ /dev/null
@@ -1,95 +0,0 @@
1input_tab_size = 2
2output_tab_size = 2
3
4indent_columns = 2
5indent_with_tabs = 0
6indent_case_brace = 2
7indent_label=-16
8
9code_width=80
10#cmd_width=80
11
12# Leave most comments alone for now
13cmt_indent_multi=false
14sp_cmt_cpp_start=add
15
16sp_not=add
17
18sp_func_call_user_paren_paren=remove
19sp_inside_fparen=remove
20sp_after_cast=add
21
22ls_for_split_full=true
23ls_func_split_full=true
24ls_code_width=true
25
26# Arithmetic operations in wrapped expressions should be at the start
27# of the line.
28pos_arith=lead
29
30# Fully parenthesize boolean exprs
31mod_full_paren_if_bool=true
32
33# Braces should be on their own line
34nl_fdef_brace=add
35nl_enum_brace=add
36nl_struct_brace=add
37nl_union_brace=add
38nl_if_brace=add
39nl_brace_else=add
40nl_elseif_brace=add
41nl_while_brace=add
42nl_switch_brace=add
43
44# no newline between "else" and "if"
45nl_else_if=remove
46
47nl_func_paren=remove
48nl_assign_brace=remove
49
50# No extra newlines that cause noisy diffs
51nl_start_of_file=remove
52nl_after_func_proto = 2
53nl_after_func_body = 3
54# If there's no new line, it's not a text file!
55nl_end_of_file=add
56nl_max_blank_in_func = 3
57nl_max = 3
58
59sp_inside_paren = remove
60
61sp_arith = add
62sp_arith_additive = add
63
64# We want spaces before and after "="
65sp_before_assign = add
66sp_after_assign = add
67
68# we want "char *foo;"
69sp_after_ptr_star = remove
70sp_between_ptr_star = remove
71
72# we want "if (foo) { ... }"
73sp_before_sparen = add
74
75sp_inside_fparen = remove
76sp_inside_sparen = remove
77
78# add space before function call and decl: "foo (x)"
79sp_func_call_paren = add
80sp_func_proto_paren = add
81sp_func_proto_paren_empty = add
82sp_func_def_paren = add
83sp_func_def_paren_empty = add
84
85# We'd want it for "if ( (foo) || (bar) )", but not for "if (m())",
86# so as uncrustify doesn't give exactly what we want => ignore
87sp_paren_paren = ignore
88sp_inside_paren = remove
89sp_bool = force
90
91nl_func_type_name = force
92#nl_branch_else = add
93nl_else_brace = add
94nl_elseif_brace = add
95nl_for_brace = add