GUI CSS: Refactored view styles to nested structure meeting sasslint requirements...
[check_mk.git] / .clang-format
blob56df5c1142185a2842dc192a79ff50ffb0ff754c
1 ---
2 Language: Cpp
3 BasedOnStyle: Google
4 AccessModifierOffset: -4
5 BreakConstructorInitializersBeforeComma: true
6 IncludeCategories:
7   - Regex: '^"config.h"'
8     Priority: 1
9   - Regex: '^<winsock2.h>'
10     Priority: 1
11   - Regex: '^<.*\.h>'
12     Priority: 2
13   - Regex: '^<.*'
14     Priority: 3
15   - Regex: '.*'
16     Priority: 4
17 IndentWidth: 4
18 BreakStringLiterals: false
19 ...