labwc/.clang-format
alexander bryan 1ac654f006 Apply coding std to <mouse> code & add .clang-format
The files:
    include/config/mousebind.h
    src/config/mousebind.c
    src/config/rc.xml
were formatted automatically via clang-format using the rules specified
in the .clang-format file. Specifically, the command;
clang-format -i -style=file include/config/mousebind.h \
src/config/mousebind.c src/config/rc.xml

This is unfortunately adding a break before the brace in enum
declarations
2021-09-01 07:05:37 +01:00

7 lines
188 B
YAML

BasedOnStyle: LLVM
IndentWidth: 8
AlwaysBreakAfterReturnType: TopLevel
UseTab: ForIndentation
BreakBeforeBraces: Linux
AllowShortEnumsOnASingleLine: false
AlignAfterOpenBracket: DontAlign