# get all remote branches - those would potentially get merge conflicts if we formatted everything
branches = run('git branch --list --remotes')
# strip the leading spaces and ignore branches that are presumably used for debugging uncrustify
- branches = [b.strip() for b in branches if "uncrustify" not in b]
+ branches = [b.strip() for b in branches if "uncrustify" not in b and "uncrustified" not in b]
branches.remove('origin/HEAD -> origin/master')
branches.remove('origin/master')
# Control indent of preprocessors inside #if blocks at brace level 0
# WARNING: Indifferent... please decide manually.
-pp_indent = ignore # ignore/add/remove/force
+pp_indent = remove # ignore/add/remove/force
# Whether to indent #if/#else/#endif at the brace level (true) or from column 1 (false)
pp_indent_at_level = false # false/true