-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.clang-tidy
More file actions
30 lines (30 loc) · 916 Bytes
/
.clang-tidy
File metadata and controls
30 lines (30 loc) · 916 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
Checks: |
-*,
clang-analyzer-*,
clang-diagnostic-*,
concurrency-*,
cppcoreguidelines-*,
llvm-*,
-llvmlibc-restrict-system-libc-headers,
-llvm-header-guard,
misc-*,
-misc-non-private-member-variables-in-classes,
-misc-no-recursion,
-misc-use-anonymous-namespace,
readability-*,
-readability-braces-around-statements,
modernize-*,
performance-*,
CheckOptions:
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: true
- key: readability-function-cognitive-complexity.IgnoreMacros
value: true
- key: cppcoreguidelines-avoid-do-while.IgnoreMacros
value: true
- key: readability-identifier-length.IgnoredVariableNames
value: 'i|g|e|EE|l|r|s|w|f|b|br|v|hb'
- key: readability-identifier-length.IgnoredLoopCounterNames
value: 'i|j|k|g|e|EE|l|r|s|w|f|b|br|v|hb'
- key: readability-identifier-length.IgnoredParameterNames
value: 'i|g|e|EE|l|r|s|w|f|b|br|v|hb'