forked from EVerest/everest-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
24 lines (24 loc) · 836 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
Checks: >
bugprone*,
misc-const-correctness,
performance*,
-performance-avoid-endl,
-llvmlibc*,
-fuchsia-overloaded-operator,
-fuchsia-statically-constructed-objects,
-readability-function-cognitive-complexity,
-modernize-use-trailing-return-type,
-abseil-string-find-startswith,
-abseil-string-find-str-contains,
-readability-identifier-length,
-fuchsia-default-arguments-calls,
-fuchsia-default-arguments-declarations,
-altera-struct-pack-align,
-performance-enum-size,
-altera*,
-misc-non-private-member-variables-in-classes,
-cppcoreguidelines-non-private-member-variables-in-classes,
-bugprone-easily-swappable-parameters
HeaderFilterRegex: ".*"
CheckOptions:
- { key: performance-unnecessary-value-param.AllowedTypes, value: ((std::shared_ptr)) }