xref: /glogg/.clang-format (revision 51fe49c1883150e3caabad6e90c03ffd896d288a)
1# Standard Qt style
2BasedOnStyle: llvm
3AccessModifierOffset: -4
4BreakBeforeBinaryOperators: true
5ColumnLimit: 80
6Standard: Cpp11
7IndentWidth: 4
8BreakBeforeBraces: Linux
9
10# Glogg-specific options
11SpacesInParentheses: true
12SpacesInSquareBrackets: true
13DerivePointerAlignment: true
14AccessModifierOffset: -2
15
16BreakBeforeBraces: Custom
17BraceWrapping:
18    BeforeElse: true
19    AfterFunction: true
20