-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
46 lines (46 loc) · 1.13 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
Checks: "-*,\
abseil-*,\
boost-*,\
bugprone-*,\
-bugprone-easily-swappable-parameters,\
cert-*,\
cppcoreguidelines-*,\
-cppcoreguidelines-avoid-non-const-global-variables,\
-cppcoreguidelines-macro-usage,\
-cppcoreguidelines-pro-type-const-cast,\
fuchsia-*,\
-fuchsia-default-arguments,\
-fuchsia-default-arguments-calls,\
-fuchsia-overloaded-operator,\
google-*,\
-google-build-using-namespace,\
-google-readability-namespace-comments,\
-google-readability-todo,\
-google-runtime-references,\
hicpp-*,\
-hicpp-braces-around-statements,\
-hicpp-named-parameter,\
-hicpp-no-array-decay,\
-hicpp-noexcept-move,\
llvm-*,\
-llvm-include-order,\
-llvm-header-guard,\
-llvm-namespace-comment,\
misc-*,\
-misc-unused-parameters,\
modernize-*,\
-modernize-use-trailing-return-type,\
performance-*,\
-performance-noexcept-move-constructor,\
readability-*,\
-readability-braces-around-statements,\
-readability-function-cognitive-complexity,\
-readability-identifier-length,\
-readability-named-parameter,\
"
CheckOptions:
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: 1
HeaderFilterRegex: '.*/(include|src|examples)/.*\.h$'
...