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