-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
27 lines (26 loc) · 1.04 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
24
25
26
27
---
Checks: '-checks=-*,bugprone-*,clang-analyzer-*,cppcoreguidelines-*,readability-*,
-cppcoreguidelines-avoid-c-arrays,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-readability-braces-around-statements,
-readability-function-cognitive-complexity
'
WarningsAsErrors: ''
HeaderFilterRegex: ''
FormatStyle: none
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: Camel_Snake_Case
- key: readability-identifier-naming.ClassMemberCase
value: lower_case
- key: readability-identifier-naming.MemberPrefix
value: '_'
- key: readability-identifier-naming.ClassMethodCase
value: lower_case
- key: readability-identifier-naming.ConstantCase
value: UPPER_CASE
- key: readability-identifier-naming.ConstexprVariableCase
value: UPPER_CASE
- key: readability-identifier-naming.LocalVariableCase
value: lower_case