-
Notifications
You must be signed in to change notification settings - Fork 37
/
.clang-tidy
21 lines (21 loc) · 853 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
Checks: "-*,\
bugprone-*,\
cert-*,\
clang-analyzer-*,\
concurrency-*,\
misc-*,\
-misc-no-recursion,\
performance-*,\
portability-*,\
readability-*,\
"
CheckOptions:
- { key: readability-function-cognitive-complexity.Threshold, value: 75 }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
- { key: readability-identifier-naming.VariableCase, value: camelBack }
- { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE }
- { key: readability-identifier-naming.EnumConstantCase, value: camelBack }
- { key: readability-identifier-naming.GlobalConstantCase, value: camelBack }
- { key: readability-identifier-naming.StaticConstantCase, value: camelBack }