-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy path.clang-tidy
24 lines (24 loc) · 973 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-unique-ptr-array-mismatch,
# google-build-explicit-make-pair,
google-default-arguments,
google-explicit-constructor,
google-readability-casting,
modernize-redundant-void-arg,
modernize-replace-random-shuffle,
modernize-shrink-to-fit,
# modernize-use-auto,
modernize-use-bool-literals,
modernize-use-equals-default,
# modernize-use-equals-delete,
modernize-use-nullptr,
modernize-use-override,
performance-inefficient-vector-operation,
performance-trivially-destructible,
performance-unnecessary-copy-initialization'
WarningsAsErrors: ''
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
...