-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
33 lines (32 loc) · 1.26 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
---
Checks: '-*,bugprone-*,
-bugprone-exception-escape,
performance-*,
misc-*,
-misc-non-private-member-variables-in-classes,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-avoid-bind,
readability-*,
-readability-uppercase-literal-suffix,
-readability-redundant-access-specifiers,
'
WarningsAsErrors: 'bugprone-*,
-bugprone-exception-escape,
performance-*,
misc-*,
-misc-non-private-member-variables-in-classes,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-avoid-bind,
readability-*,
-readability-uppercase-literal-suffix,
-readability-redundant-access-specifiers,
'
# Include all headers in the project
HeaderFilterRegex: 'thread_pool'
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- { key: performance-unnecessary-value-param.AllowedTypes, value: 'shared_ptr;SharedPtr;[Ll]og' }
...