challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

uncrustify.cfg (1970B)


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