1# Configuration for cmake-format (v0.4.1, circa Jul 2018) 2# https://github.com/cheshirekow/cmake_format 3 4# How wide to allow formatted cmake files 5line_width = 132 6 7# How many spaces to tab for indent 8tab_size = 4 9 10# If arglists are longer than this, break them always 11max_subargs_per_line = 3 12 13# If true, separate flow control names from their parentheses with a space 14separate_ctrl_name_with_space = False 15 16# If true, separate function names from parentheses with a space 17separate_fn_name_with_space = False 18 19# If a statement is wrapped to more than one line, than dangle the closing 20# parenthesis on it's own line 21dangle_parens = False 22 23# What character to use for bulleted lists 24bullet_char = u'*' 25 26# What character to use as punctuation after numerals in an enumerated list 27enum_char = u'.' 28 29# What style line endings to use in the output. 30line_ending = u'unix' 31 32# Format command names consistently as 'lower' or 'upper' case 33command_case = u'lower' 34 35