-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
32 lines (32 loc) · 883 Bytes
/
.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
28
29
30
31
32
---
Checks: >
-*,
bugprone-*,
cert-*,
clang-analyzer-*,
concurrency-*,
misc-*,
performance-*,
portability-*,
readability-*,
readability-identifier-naming,
-bugprone-easily-swappable-parameters,
-bugprone-macro-parentheses,
-bugprone-reserved-identifier,
-cert-dcl37-c, -cert-dcl51-cpp, -cert-dcl21-cpp, -cert-err58-cpp,
-misc-no-recursion,
-misc-include-cleaner,
-misc-non-private-member-variables-in-classes,
-misc-use-anonymous-namespace,
-performance-noexcept-move-constructor,
-performance-no-int-to-ptr,
-readability-braces-around-statements,
-readability-identifier-length,
-readability-named-parameter,
-readability-uppercase-literal-suffix,
-readability-use-anyofallof,
-readability-magic-numbers
WarningsAsErrors: ''
FormatStyle: none
CheckOptions:
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ }