-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.clang-tidy
More file actions
32 lines (26 loc) · 794 Bytes
/
.clang-tidy
File metadata and controls
32 lines (26 loc) · 794 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: >
clang-analyzer-*,
bugprone-*,
performance-*,
modernize-*,
readability-*,
misc-*,
cert-*,
cppcoreguidelines-*,
-modernize-use-auto,
-cppcoreguidelines-pro-type-vararg,
WarningsAsErrors: >
'clang-analyzer-*','bugprone-*'
HeaderFilterRegex: '.*'
CheckOptions:
- key: readability-function-size.LineThreshold
value: 100
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.FunctionCase
value: lower_case
- key: readability-identifier-naming.ConstantCase
value: UPPER_CASE
- key: readability-identifier-naming.PrivateMemberPrefix
value: ""