-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
28 lines (28 loc) · 2.02 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
Checks: '*,-clang-analyzer-alpha.*,-google-readability-todo,-llvm-header-guard,-clang-diagnostic-unused-macros,-readability-redundant-member-init,-fuchsia-default-arguments,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-google-readability-namespace-comments,-fuchsia-overloaded-operator,-cppcoreguidelines-pro-type-vararg,-llvm-namespace-comment,-cppcoreguidelines-owning-memory,-cppcoreguidelines-pro-bounds-pointer-arithmetic,-hicpp-*,-cppcoreguidelines-special-member-functions,-readability-else-after-return,-google-runtime-references,-google-runtime-int,-android-*,-cppcoreguidelines-pro-bounds-constant-array-index,-readability-container-size-empty,-clang-diagnostic-unused-command-line-argument,-google-explicit-constructor,-clang-diagnostic-deprecated,-cppcoreguidelines-pro-type-union-access'
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: true
CheckOptions:
- key: google-readability-braces-around-statements.ShortStatementLines
value: '1'
- key: google-readability-function-size.BranchThreshold
value: '4294967295'
- key: google-readability-function-size.LineThreshold
value: '4294967295'
- key: google-readability-function-size.StatementThreshold
value: '800'
- key: google-readability-namespace-comments.ShortNamespaceLines
value: '10'
- key: google-readability-namespace-comments.SpacesBeforeComments
value: '2'
- key: llvm-namespace-comment.ShortNamespaceLines
value: '1'
- key: llvm-namespace-comment.SpacesBeforeComments
value: '2'
- key: readability-braces-around-statements.ShortStatementLines
value: '0'
- key: readability-function-size.BranchThreshold
value: '4294967295'
- key: readability-function-size.LineThreshold
value: '4294967295'
- key: readability-function-size.StatementThreshold
value: '800'