forked from grpc/grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
48 lines (48 loc) · 1.45 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
47
48
---
Checks: '-*,
abseil-*,
bugprone-*,
-bugprone-integer-division,
-bugprone-narrowing-conversions,
-bugprone-too-small-loop-variable,
performance-*,
-performance-unnecessary-copy-initialization,
-performance-unnecessary-value-param,
google-*,
-google-build-using-namespace,
-google-default-arguments,
-google-explicit-constructor,
-google-global-names-in-headers,
-google-readability-braces-around-statements,
-google-readability-casting,
-google-readability-todo,
-google-runtime-int,
-google-runtime-references,
-misc-definitions-in-headers,
misc-static-assert,
misc-unconventional-assign-operator,
misc-uniqueptr-reset-release,
misc-unused-alias-decls,
-misc-unused-using-decls,
modernize-make-unique,
-modernize-redundant-void-arg,
modernize-replace-auto-ptr,
modernize-shrink-to-fit,
modernize-use-bool-literals,
modernize-use-nullptr,
modernize-use-override,
readability-container-size-empty,
readability-deleted-default,
readability-function-size,
-readability-inconsistent-declaration-parameter-name,
-readability-redundant-control-flow,
readability-redundant-smartptr-get,
-readability-string-compare'
WarningsAsErrors: '*'
CheckOptions:
- key: readability-function-size.StatementThreshold
value: '450'
- key: modernize-make-unique.MakeSmartPtrFunction
value: 'absl::make_unique'
- key: modernize-make-unique.MakeSmartPtrFunctionHeader
value: 'absl/memory/memory.h'