forked from lclc/opentxs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
55 lines (55 loc) · 1.86 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
49
50
51
52
53
54
55
{
"InheritParentConfig": "false",
"Checks": "boost-use-to-string,bugprone-argument-comment,bugprone-assert-side-effect,bugprone-bad-signal-to-kill-thread,bugprone-unused-raii,bugprone-use-after-move,cert-*,-cert-oop54-cpp,-cert-err58-cpp,clang-diagnostic-*,clang-analyzer-*,-clang-diagnostic-unknown-warning-option,misc-*,-misc-confusable-identifiers,-misc-include-cleaner,-misc-no-recursion,-misc-non-private-member-variables-in-classes,-misc-unused-parameters,-misc-use-anonymous-namespace,modernize-*,-modernize-macro-to-enum,-modernize-pass-by-value,-modernize-use-default-member-init,-modernize-use-nodiscard,readability-braces-around-statements,readability-container-contains,readability-identifier-naming,readability-qualified-auto",
"CheckOptions": [
{
"key": "bugprone-argument-comment.IgnoreSingleArgument",
"value": "false"
},
{
"key": "bugprone-argument-comment.CommentBoolLiterals",
"value": "false"
},
{
"key": "bugprone-argument-comment.CommentIntegerLiterals",
"value": "false"
},
{
"key": "bugprone-argument-comment.CommentFloatLiterals",
"value": "false"
},
{
"key": "bugprone-argument-comment.CommentCharacterLiterals",
"value": "false"
},
{
"key": "bugprone-argument-comment.CommentUserDefinedLiterals",
"value": "false"
},
{
"key": "bugprone-argument-comment.CommentNullPtrs",
"value": "false"
},
{
"key": "readability-identifier-naming.MemberCase",
"value": "lower_case"
},
{
"key": "readability-identifier-naming.MemberSuffix",
"value": "_"
},
{
"key": "readability-braces-around-statements.ShortStatementLines",
"value": "0"
}
],
"FormatStyle": "file",
"WarningsAsErrors": "*",
"HeaderFileExtensions": [
"h",
"hh",
"hpp",
"hxx",
"tpp"
]
}