-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
executable file
·23 lines (22 loc) · 1 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Checks: >
bugprone-*,
cppcoreguidelines-*,
clang-analyzer-*,
modernize-*,
performance-*,
portability-*,
readability-*,
-readability-braces-around-statements,
-readability-uppercase-literal-suffix,
-readability-identifier-length,
readability-identifier-naming
CheckOptions:
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.ClassCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ }
- { key: readability-identifier-naming.StructCase, value: lower_case }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.GlobalConstantCase, value: lower_case }
- { key: readability-identifier-naming.EnumCase, value: lower_case }
- { key: readability-identifier-naming.EnumConstantCase, value: lower_case }