.uncrustify.cfg 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. indent_with_tabs = 2 # 1=indent to level only, 2=indent with tabs
  2. input_tab_size = 8 # original tab size
  3. output_tab_size = 8 # new tab size
  4. indent_columns = output_tab_size
  5. indent_label = 1 # pos: absolute col, neg: relative column
  6. indent_switch_case = 0 # number
  7. #
  8. # inter-symbol newlines
  9. #
  10. nl_enum_brace = remove # "enum {" vs "enum \n {"
  11. nl_union_brace = remove # "union {" vs "union \n {"
  12. nl_struct_brace = remove # "struct {" vs "struct \n {"
  13. nl_do_brace = remove # "do {" vs "do \n {"
  14. nl_if_brace = remove # "if () {" vs "if () \n {"
  15. nl_for_brace = remove # "for () {" vs "for () \n {"
  16. nl_else_brace = remove # "else {" vs "else \n {"
  17. nl_while_brace = remove # "while () {" vs "while () \n {"
  18. nl_switch_brace = remove # "switch () {" vs "switch () \n {"
  19. nl_brace_while = remove # "} while" vs "} \n while" - cuddle while
  20. nl_brace_else = remove # "} \n else" vs "} else"
  21. nl_func_var_def_blk = 1
  22. nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{"
  23. nl_fdef_brace = add # "int foo() {" vs "int foo()\n{"
  24. #
  25. # Source code modifications
  26. #
  27. mod_paren_on_return = ignore # "return 1;" vs "return (1);"
  28. mod_full_brace_if = add # "if() { } else { }" vs "if() else"
  29. #
  30. # inter-character spacing options
  31. #
  32. sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)"
  33. sp_before_sparen = force # "if (" vs "if("
  34. sp_after_sparen = force # "if () {" vs "if (){"
  35. sp_inside_braces = add # "{ 1 }" vs "{1}"
  36. sp_inside_braces_struct = add # "{ 1 }" vs "{1}"
  37. sp_inside_braces_enum = add # "{ 1 }" vs "{1}"
  38. sp_assign = add
  39. sp_arith = add
  40. sp_bool = add
  41. sp_compare = add
  42. sp_assign = add
  43. sp_after_comma = add
  44. sp_func_def_paren = remove # "int foo (){" vs "int foo(){"
  45. sp_func_call_paren = remove # "foo (" vs "foo("
  46. sp_func_proto_paren = remove # "int foo ();" vs "int foo();"
  47. sp_inside_fparen = remove # "func( arg )" vs "func(arg)"
  48. sp_else_brace = add # ignore/add/remove/force
  49. sp_before_ptr_star = add # ignore/add/remove/force
  50. sp_after_ptr_star = remove # ignore/add/remove/force
  51. sp_between_ptr_star = remove # ignore/add/remove/force
  52. sp_inside_paren = remove # remove spaces inside parens
  53. sp_paren_paren = remove # remove spaces between nested parens
  54. sp_inside_sparen = remove # remove spaces inside parens for if, while and the like
  55. sp_brace_else = add # ignore/add/remove/force
  56. sp_before_nl_cont = ignore
  57. sp_cmt_cpp_start = add
  58. sp_brace_typedef = add # }typedefd_name -> } typedefd_name
  59. cmt_sp_after_star_cont = 1
  60. #
  61. # Aligning stuff
  62. #
  63. align_with_tabs = FALSE # use tabs to align
  64. align_on_tabstop = TRUE # align on tabstops
  65. align_enum_equ_span = 4 # '=' in enum definition
  66. align_struct_init_span = 0 # align stuff in a structure init '= { }'
  67. align_right_cmt_span = 3
  68. align_nl_cont = TRUE
  69. sp_pp_concat = ignore # ignore/add/remove/force