uncrustify.cfg 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # Basics
  2. code_width = 110
  3. indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs
  4. input_tab_size = 4 # original tab size
  5. output_tab_size = 4 # new tab size
  6. indent_columns = output_tab_size
  7. indent_label = 1 # pos: absolute col, neg: relative column
  8. # Newlines
  9. nl_enum_brace = remove # "enum {" vs "enum \n {"
  10. nl_union_brace = remove # "union {" vs "union \n {"
  11. nl_struct_brace = remove # "struct {" vs "struct \n {"
  12. nl_assign_brace = remove
  13. nl_do_brace = remove # "do {" vs "do \n {"
  14. nl_if_brace = remove # "if () {" vs "if () \n {"
  15. nl_else_if = remove
  16. nl_for_brace = remove # "for () {" vs "for () \n {"
  17. nl_else_brace = remove # "else {" vs "else \n {"
  18. nl_while_brace = remove # "while () {" vs "while () \n {"
  19. nl_switch_brace = remove # "switch () {" vs "switch () \n {"
  20. nl_brace_while = remove # "} while" vs "} \n while" - cuddle while
  21. nl_brace_else = remove # "} else" vs "} \n else" - cuddle else
  22. nl_func_var_def_blk = 0 # number of blank lines after variable definitions
  23. # Source code modifications
  24. mod_paren_on_return = remove # "return 1;" vs "return (1);"
  25. mod_full_brace_if = remove # "if (a) a--;" vs "if (a) { a--; }"
  26. mod_full_brace_for = remove # "for () a--;" vs "for () { a--; }"
  27. mod_full_brace_do = add # "do a--; while ();" vs "do { a--; } while ();"
  28. mod_full_brace_while = add # "while (a) a--;" vs "while (a) { a--; }"
  29. mod_full_brace_nl = 2 # don't remove if more than 3 newlines
  30. # inter-character spacing options
  31. sp_return_paren = force # "return (1);" vs "return(1);"
  32. sp_sizeof_paren = remove # "sizeof (int)" vs "sizeof(int)"
  33. sp_before_sparen = remove # "if (" vs "if("
  34. sp_after_sparen = add # "if () {" vs "if (){"
  35. sp_after_cast = remove # "(int) a" vs "(int)a"
  36. sp_inside_braces = add # "{ 1 }" vs "{1}"
  37. sp_inside_braces_struct = add # "{ 1 }" vs "{1}"
  38. sp_inside_braces_enum = add # "{ 1 }" vs "{1}"
  39. sp_assign = add
  40. sp_arith = ignore
  41. sp_bool = add
  42. sp_compare = add
  43. sp_after_comma = add
  44. sp_fparen_brace = add
  45. sp_pp_concat = remove
  46. sp_after_semi_for_empty = remove
  47. sp_after_semi_for = remove
  48. # Functions
  49. sp_paren_brace = add # "int foo(){ vs. int foo() {"
  50. sp_func_def_paren = remove # "int foo\n(){" vs "int foo(){"
  51. sp_func_call_paren = remove # "foo (" vs "foo("
  52. sp_func_proto_paren = remove # "int foo ();" vs "int foo();"
  53. nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{"
  54. nl_fdef_brace = remove # "int foo() {" vs "int foo()\n{"
  55. # Macros
  56. sp_macro = remove
  57. sp_macro_func = remove
  58. align_nl_cont = true
  59. # Switch
  60. nl_before_case = true
  61. nl_after_case = true
  62. # Pointers
  63. sp_between_ptr_star = remove
  64. sp_before_ptr_star = force
  65. sp_after_ptr_star = remove
  66. # Aligning
  67. align_with_tabs = false # use tabs to align
  68. align_on_tabstop = false # align on tabstops
  69. align_var_def_thresh = 6
  70. align_func_params = true # align variable definitions
  71. align_assign_span = 2
  72. align_assign_thresh = 6
  73. align_nl_cont = true # align macros with backlash+newline
  74. ## Algin Variable Assignment
  75. align_var_def_span = 2 # max distance of lines considered together
  76. align_var_def_thresh = 6 # max horizontal distance for grouping
  77. align_var_def_star_style = 2
  78. align_var_def_amp_style = 2
  79. align_var_def_inline = true
  80. ## Enum Assignment
  81. align_enum_equ_thresh = 12
  82. align_enum_equ_span = 2
  83. sp_enum_assign = force
  84. align_struct_init_span = 2 # align stuff in a structure init '= { }'
  85. align_var_struct_span = 2
  86. align_var_struct_thresh = 6
  87. align_right_cmt_span = 2