-
-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy path.clang-tidy
More file actions
31 lines (28 loc) · 876 Bytes
/
.clang-tidy
File metadata and controls
31 lines (28 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
Checks: >
-*,
bugprone-*,
clang-analyzer-*,
misc-*,
performance-*,
readability-*,
-bugprone-reserved-identifier,
-readability-identifier-length,
-readability-magic-numbers,
-readability-braces-around-statements,
-readability-else-after-return,
-readability-function-cognitive-complexity,
-misc-no-recursion
WarningsAsErrors: ''
HeaderFilterRegex: 'src/.*'
CheckOptions:
- key: readability-identifier-naming.FunctionCase
value: lower_case
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.StructCase
value: CamelCase
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.ParameterCase
value: lower_case