-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
32 lines (31 loc) · 921 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: "*,
-abseil-*,
-altera-*,
-android-*,
-fuchsia-*,
-google-*,
-llvm*,
-modernize-use-trailing-return-type,
-zircon-*,
-performance-*,
-jodernize-*,
-readability-else-after-return,
-readability-static-accessed-through-instance,
-readability-avoid-const-params-in-decls,
-cppcoreguidelines-non-private-member-variables-in-classes,
-misc-non-private-member-variables-in-classes,
"
WarningsAsErrors: ''
HeaderFilterRegex: ''
FormatStyle: none
CheckOptions:
- key: readability-identifier-length.MinimumParameterNameLength
value: '0'
- key: readability-identifier-length.IgnoredVariableNames
value: 'x|y|z'
# ignore macros to avoid catch2 warnings
- key: cppcoreguidelines-avoid-do-while.IgnoreMacros
value: 'true'
- key: misc-use-anonymous-namespace
value: 'NULL'