forked from apple/AudioUnitSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_clang-tidy
33 lines (33 loc) · 894 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
25
26
27
28
29
30
31
32
33
---
Checks:
'
*,
clang-diagnostic-*,
clang-analyzer-*,
-clang-diagnostic-pragma-once-outside-header,
-llvm-header-guard,
-fuchsia-default-arguments-calls,
-fuchsia-default-arguments-declarations,
-fuchsia-multiple-inheritance,
-fuchsia-overloaded-operator,
-fuchsia-trailing-return,
-hicpp-uppercase-literal-suffix,
-google-default-arguments,
-google-objc*,
-google-readability-todo,
-google-runtime-references,
-modernize-use-trailing-return-type,
-objc-property-declaration,
-readability-implicit-bool-cast,
-readability-uppercase-literal-suffix
'
WarningsAsErrors: ''
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: cppcoreguidelines-pro-type-member-init.IgnoreArrays
value: '1'
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: '1'
...