|
| 1 | +--- |
| 2 | +Checks: 'clang-diagnostic-*,clang-analyzer-*,-*,performance-*,bugprone-*,clang-analyzer-*,mpi-*,misc-*,readability-*' |
| 3 | +WarningsAsErrors: '' |
| 4 | +HeaderFilterRegex: '' |
| 5 | +AnalyzeTemporaryDtors: false |
| 6 | +FormatStyle: 'file' |
| 7 | +CheckOptions: |
| 8 | + - key: bugprone-argument-comment.CommentBoolLiterals |
| 9 | + value: '0' |
| 10 | + - key: bugprone-argument-comment.CommentCharacterLiterals |
| 11 | + value: '0' |
| 12 | + - key: bugprone-argument-comment.CommentFloatLiterals |
| 13 | + value: '0' |
| 14 | + - key: bugprone-argument-comment.CommentIntegerLiterals |
| 15 | + value: '0' |
| 16 | + - key: bugprone-argument-comment.CommentNullPtrs |
| 17 | + value: '0' |
| 18 | + - key: bugprone-argument-comment.CommentStringLiterals |
| 19 | + value: '0' |
| 20 | + - key: bugprone-argument-comment.CommentUserDefinedLiterals |
| 21 | + value: '0' |
| 22 | + - key: bugprone-argument-comment.IgnoreSingleArgument |
| 23 | + value: '0' |
| 24 | + - key: bugprone-argument-comment.StrictMode |
| 25 | + value: '0' |
| 26 | + - key: bugprone-assert-side-effect.AssertMacros |
| 27 | + value: assert |
| 28 | + - key: bugprone-assert-side-effect.CheckFunctionCalls |
| 29 | + value: '0' |
| 30 | + - key: bugprone-dangling-handle.HandleClasses |
| 31 | + value: 'std::basic_string_view;std::experimental::basic_string_view' |
| 32 | + - key: bugprone-dynamic-static-initializers.HeaderFileExtensions |
| 33 | + value: ',h,hh,hpp,hxx' |
| 34 | + - key: bugprone-exception-escape.FunctionsThatShouldNotThrow |
| 35 | + value: '' |
| 36 | + - key: bugprone-exception-escape.IgnoredExceptions |
| 37 | + value: '' |
| 38 | + - key: bugprone-misplaced-widening-cast.CheckImplicitCasts |
| 39 | + value: '0' |
| 40 | + - key: bugprone-not-null-terminated-result.WantToUseSafeFunctions |
| 41 | + value: '1' |
| 42 | + - key: bugprone-signed-char-misuse.CharTypdefsToIgnore |
| 43 | + value: '' |
| 44 | + - key: bugprone-sizeof-expression.WarnOnSizeOfCompareToConstant |
| 45 | + value: '1' |
| 46 | + - key: bugprone-sizeof-expression.WarnOnSizeOfConstant |
| 47 | + value: '1' |
| 48 | + - key: bugprone-sizeof-expression.WarnOnSizeOfIntegerExpression |
| 49 | + value: '0' |
| 50 | + - key: bugprone-sizeof-expression.WarnOnSizeOfThis |
| 51 | + value: '1' |
| 52 | + - key: bugprone-string-constructor.LargeLengthThreshold |
| 53 | + value: '8388608' |
| 54 | + - key: bugprone-string-constructor.WarnOnLargeLength |
| 55 | + value: '1' |
| 56 | + - key: bugprone-suspicious-enum-usage.StrictMode |
| 57 | + value: '0' |
| 58 | + - key: bugprone-suspicious-missing-comma.MaxConcatenatedTokens |
| 59 | + value: '5' |
| 60 | + - key: bugprone-suspicious-missing-comma.RatioThreshold |
| 61 | + value: '0.200000' |
| 62 | + - key: bugprone-suspicious-missing-comma.SizeThreshold |
| 63 | + value: '5' |
| 64 | + - key: bugprone-suspicious-string-compare.StringCompareLikeFunctions |
| 65 | + value: '' |
| 66 | + - key: bugprone-suspicious-string-compare.WarnOnImplicitComparison |
| 67 | + value: '1' |
| 68 | + - key: bugprone-suspicious-string-compare.WarnOnLogicalNotComparison |
| 69 | + value: '0' |
| 70 | + - key: bugprone-too-small-loop-variable.MagnitudeBitsUpperLimit |
| 71 | + value: '16' |
| 72 | + - key: bugprone-unhandled-self-assignment.WarnOnlyIfThisHasSuspiciousField |
| 73 | + value: '1' |
| 74 | + - key: bugprone-unused-return-value.CheckedFunctions |
| 75 | + value: '::std::async;::std::launder;::std::remove;::std::remove_if;::std::unique;::std::unique_ptr::release;::std::basic_string::empty;::std::vector::empty' |
| 76 | + - key: cert-dcl16-c.NewSuffixes |
| 77 | + value: 'L;LL;LU;LLU' |
| 78 | + - key: cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField |
| 79 | + value: '0' |
| 80 | + - key: cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors |
| 81 | + value: '1' |
| 82 | + - key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic |
| 83 | + value: '1' |
| 84 | + - key: google-readability-braces-around-statements.ShortStatementLines |
| 85 | + value: '1' |
| 86 | + - key: google-readability-function-size.StatementThreshold |
| 87 | + value: '800' |
| 88 | + - key: google-readability-namespace-comments.ShortNamespaceLines |
| 89 | + value: '10' |
| 90 | + - key: google-readability-namespace-comments.SpacesBeforeComments |
| 91 | + value: '2' |
| 92 | + - key: misc-definitions-in-headers.HeaderFileExtensions |
| 93 | + value: ',h,hh,hpp,hxx' |
| 94 | + - key: misc-definitions-in-headers.UseHeaderFileExtension |
| 95 | + value: '1' |
| 96 | + - key: misc-throw-by-value-catch-by-reference.CheckThrowTemporaries |
| 97 | + value: '1' |
| 98 | + - key: misc-unused-parameters.StrictMode |
| 99 | + value: '0' |
| 100 | + - key: modernize-loop-convert.MaxCopySize |
| 101 | + value: '16' |
| 102 | + - key: modernize-loop-convert.MinConfidence |
| 103 | + value: reasonable |
| 104 | + - key: modernize-loop-convert.NamingStyle |
| 105 | + value: CamelCase |
| 106 | + - key: modernize-pass-by-value.IncludeStyle |
| 107 | + value: llvm |
| 108 | + - key: modernize-replace-auto-ptr.IncludeStyle |
| 109 | + value: llvm |
| 110 | + - key: modernize-use-nullptr.NullMacros |
| 111 | + value: 'NULL' |
| 112 | + - key: performance-faster-string-find.StringLikeClasses |
| 113 | + value: 'std::basic_string' |
| 114 | + - key: performance-for-range-copy.AllowedTypes |
| 115 | + value: '' |
| 116 | + - key: performance-for-range-copy.WarnOnAllAutoCopies |
| 117 | + value: '0' |
| 118 | + - key: performance-inefficient-string-concatenation.StrictMode |
| 119 | + value: '0' |
| 120 | + - key: performance-inefficient-vector-operation.EnableProto |
| 121 | + value: '0' |
| 122 | + - key: performance-inefficient-vector-operation.VectorLikeClasses |
| 123 | + value: '::std::vector' |
| 124 | + - key: performance-move-const-arg.CheckTriviallyCopyableMove |
| 125 | + value: '1' |
| 126 | + - key: performance-move-constructor-init.IncludeStyle |
| 127 | + value: llvm |
| 128 | + - key: performance-no-automatic-move.AllowedTypes |
| 129 | + value: '' |
| 130 | + - key: performance-type-promotion-in-math-fn.IncludeStyle |
| 131 | + value: llvm |
| 132 | + - key: performance-unnecessary-copy-initialization.AllowedTypes |
| 133 | + value: '' |
| 134 | + - key: performance-unnecessary-value-param.AllowedTypes |
| 135 | + value: '' |
| 136 | + - key: performance-unnecessary-value-param.IncludeStyle |
| 137 | + value: llvm |
| 138 | + - key: readability-braces-around-statements.ShortStatementLines |
| 139 | + value: '0' |
| 140 | + - key: readability-else-after-return.WarnOnUnfixable |
| 141 | + value: '1' |
| 142 | + - key: readability-function-size.BranchThreshold |
| 143 | + value: '4294967295' |
| 144 | + - key: readability-function-size.LineThreshold |
| 145 | + value: '4294967295' |
| 146 | + - key: readability-function-size.NestingThreshold |
| 147 | + value: '4294967295' |
| 148 | + - key: readability-function-size.ParameterThreshold |
| 149 | + value: '4294967295' |
| 150 | + - key: readability-function-size.StatementThreshold |
| 151 | + value: '800' |
| 152 | + - key: readability-function-size.VariableThreshold |
| 153 | + value: '4294967295' |
| 154 | + - key: readability-identifier-naming.IgnoreFailedSplit |
| 155 | + value: '0' |
| 156 | + - key: readability-implicit-bool-conversion.AllowIntegerConditions |
| 157 | + value: '0' |
| 158 | + - key: readability-implicit-bool-conversion.AllowPointerConditions |
| 159 | + value: '0' |
| 160 | + - key: readability-inconsistent-declaration-parameter-name.IgnoreMacros |
| 161 | + value: '1' |
| 162 | + - key: readability-inconsistent-declaration-parameter-name.Strict |
| 163 | + value: '0' |
| 164 | + - key: readability-magic-numbers.IgnoredFloatingPointValues |
| 165 | + value: '1.0;100.0;' |
| 166 | + - key: readability-magic-numbers.IgnoredIntegerValues |
| 167 | + value: '1;2;3;4;' |
| 168 | + - key: readability-redundant-member-init.IgnoreBaseInCopyConstructors |
| 169 | + value: '0' |
| 170 | + - key: readability-redundant-smartptr-get.IgnoreMacros |
| 171 | + value: '1' |
| 172 | + - key: readability-redundant-string-init.StringNames |
| 173 | + value: '::std::basic_string' |
| 174 | + - key: readability-simplify-boolean-expr.ChainedConditionalAssignment |
| 175 | + value: '0' |
| 176 | + - key: readability-simplify-boolean-expr.ChainedConditionalReturn |
| 177 | + value: '0' |
| 178 | + - key: readability-simplify-subscript-expr.Types |
| 179 | + value: '::std::basic_string;::std::basic_string_view;::std::vector;::std::array' |
| 180 | + - key: readability-static-accessed-through-instance.NameSpecifierNestingThreshold |
| 181 | + value: '3' |
| 182 | + - key: readability-uppercase-literal-suffix.IgnoreMacros |
| 183 | + value: '1' |
| 184 | + - key: readability-uppercase-literal-suffix.NewSuffixes |
| 185 | + value: '' |
| 186 | +... |
0 commit comments