xref: /glogg/.clang-format (revision d26ce8cde46f21c68eefc390dd0ada8f4bce29bd)
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