|
| 1 | +--- |
| 2 | +Checks: "clang-diagnostic-*,clang-analyzer-*,-*,cert*,clang*,cppcoreguidelines*,misc-assert*,misc-b*,misc-dangling*,misc-f*,misc-i*,misc-move-const*,misc-n*,misc-r*,misc-s*,misc-t*,misc-u*,misc-v*,modernize*,performance*" |
| 3 | +WarningsAsErrors: "" |
| 4 | +HeaderFilterRegex: ".*" |
| 5 | +AnalyzeTemporaryDtors: false |
| 6 | +FormatStyle: none |
| 7 | +User: adam |
| 8 | +CheckOptions: |
| 9 | + - key: cert-dcl59-cpp.HeaderFileExtensions |
| 10 | + value: h,hh,hpp,hxx |
| 11 | + - key: cert-err09-cpp.CheckThrowTemporaries |
| 12 | + value: "1" |
| 13 | + - key: cert-err61-cpp.CheckThrowTemporaries |
| 14 | + value: "1" |
| 15 | + - key: cert-oop11-cpp.IncludeStyle |
| 16 | + value: llvm |
| 17 | + - key: cppcoreguidelines-no-malloc.Allocations |
| 18 | + value: "::malloc;::calloc" |
| 19 | + - key: cppcoreguidelines-no-malloc.Deallocations |
| 20 | + value: "::free" |
| 21 | + - key: cppcoreguidelines-no-malloc.Reallocations |
| 22 | + value: "::realloc" |
| 23 | + - key: cppcoreguidelines-pro-bounds-constant-array-index.GslHeader |
| 24 | + value: "" |
| 25 | + - key: cppcoreguidelines-pro-bounds-constant-array-index.IncludeStyle |
| 26 | + value: "0" |
| 27 | + - key: cppcoreguidelines-pro-type-member-init.IgnoreArrays |
| 28 | + value: "0" |
| 29 | + - key: cppcoreguidelines-special-member-functions.AllowMissingMoveFunctions |
| 30 | + value: "0" |
| 31 | + - key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor |
| 32 | + value: "0" |
| 33 | + - key: google-readability-braces-around-statements.ShortStatementLines |
| 34 | + value: "1" |
| 35 | + - key: google-readability-function-size.StatementThreshold |
| 36 | + value: "800" |
| 37 | + - key: google-readability-namespace-comments.ShortNamespaceLines |
| 38 | + value: "10" |
| 39 | + - key: google-readability-namespace-comments.SpacesBeforeComments |
| 40 | + value: "2" |
| 41 | + - key: misc-assert-side-effect.AssertMacros |
| 42 | + value: assert |
| 43 | + - key: misc-assert-side-effect.CheckFunctionCalls |
| 44 | + value: "0" |
| 45 | + - key: misc-dangling-handle.HandleClasses |
| 46 | + value: "std::basic_string_view;std::experimental::basic_string_view" |
| 47 | + - key: misc-move-constructor-init.IncludeStyle |
| 48 | + value: llvm |
| 49 | + - key: misc-sizeof-expression.WarnOnSizeOfCompareToConstant |
| 50 | + value: "1" |
| 51 | + - key: misc-sizeof-expression.WarnOnSizeOfConstant |
| 52 | + value: "1" |
| 53 | + - key: misc-sizeof-expression.WarnOnSizeOfThis |
| 54 | + value: "1" |
| 55 | + - key: misc-string-constructor.LargeLengthThreshold |
| 56 | + value: "8388608" |
| 57 | + - key: misc-string-constructor.WarnOnLargeLength |
| 58 | + value: "1" |
| 59 | + - key: misc-suspicious-enum-usage.StrictMode |
| 60 | + value: "0" |
| 61 | + - key: misc-suspicious-missing-comma.MaxConcatenatedTokens |
| 62 | + value: "5" |
| 63 | + - key: misc-suspicious-missing-comma.RatioThreshold |
| 64 | + value: "0.200000" |
| 65 | + - key: misc-suspicious-missing-comma.SizeThreshold |
| 66 | + value: "5" |
| 67 | + - key: misc-suspicious-string-compare.StringCompareLikeFunctions |
| 68 | + value: "" |
| 69 | + - key: misc-suspicious-string-compare.WarnOnImplicitComparison |
| 70 | + value: "1" |
| 71 | + - key: misc-suspicious-string-compare.WarnOnLogicalNotComparison |
| 72 | + value: "0" |
| 73 | + - key: misc-throw-by-value-catch-by-reference.CheckThrowTemporaries |
| 74 | + value: "1" |
| 75 | + - key: modernize-loop-convert.MaxCopySize |
| 76 | + value: "16" |
| 77 | + - key: modernize-loop-convert.MinConfidence |
| 78 | + value: reasonable |
| 79 | + - key: modernize-loop-convert.NamingStyle |
| 80 | + value: CamelCase |
| 81 | + - key: modernize-pass-by-value.IncludeStyle |
| 82 | + value: llvm |
| 83 | + - key: modernize-pass-by-value.ValuesOnly |
| 84 | + value: "0" |
| 85 | + - key: modernize-raw-string-literal.ReplaceShorterLiterals |
| 86 | + value: "0" |
| 87 | + - key: modernize-replace-auto-ptr.IncludeStyle |
| 88 | + value: llvm |
| 89 | + - key: modernize-replace-random-shuffle.IncludeStyle |
| 90 | + value: llvm |
| 91 | + - key: modernize-use-auto.RemoveStars |
| 92 | + value: "0" |
| 93 | + - key: modernize-use-default-member-init.UseAssignment |
| 94 | + value: "0" |
| 95 | + - key: modernize-use-emplace.ContainersWithPushBack |
| 96 | + value: "::std::vector;::std::list;::std::deque" |
| 97 | + - key: modernize-use-emplace.SmartPointers |
| 98 | + value: "::std::shared_ptr;::std::unique_ptr;::std::auto_ptr;::std::weak_ptr" |
| 99 | + - key: modernize-use-nullptr.NullMacros |
| 100 | + value: "NULL" |
| 101 | + - key: modernize-use-transparent-functors.SafeMode |
| 102 | + value: "0" |
| 103 | + - key: modernize-use-using.IgnoreMacros |
| 104 | + value: "1" |
| 105 | + - key: performance-faster-string-find.StringLikeClasses |
| 106 | + value: "std::basic_string" |
| 107 | + - key: performance-for-range-copy.WarnOnAllAutoCopies |
| 108 | + value: "0" |
| 109 | + - key: performance-inefficient-string-concatenation.StrictMode |
| 110 | + value: "0" |
| 111 | + - key: performance-inefficient-vector-operation.VectorLikeClasses |
| 112 | + value: "::std::vector" |
| 113 | + - key: performance-type-promotion-in-math-fn.IncludeStyle |
| 114 | + value: llvm |
| 115 | + - key: performance-unnecessary-value-param.IncludeStyle |
| 116 | + value: llvm |
| 117 | +... |
0 commit comments