|
| 1 | +CheckOptions: |
| 2 | +- key: readability-identifier-naming.ClassCase |
| 3 | + value: CamelCase |
| 4 | +- key: readability-identifier-naming.ParameterCase |
| 5 | + value: camelBack |
| 6 | +- key: readability-identifier-naming.ClassMethodCase |
| 7 | + value: lower_case |
| 8 | +- key: readability-identifier-naming.FunctionCase |
| 9 | + value: lower_case |
| 10 | +- key: readability-identifier-naming.EnumConstantCase |
| 11 | + value: CamelCase |
| 12 | +- key: readability-identifier-naming.LocalVariableCase |
| 13 | + value: camelBack |
| 14 | +- key: readability-identifier-naming.PrivateMemberSuffix |
| 15 | + value: _ |
| 16 | +- key: readability-identifier-naming.EnumCase |
| 17 | + value: CamelCase |
| 18 | +- key: readability-identifier-naming.GlobalVariableCase |
| 19 | + value: camelBack |
| 20 | +- key: readability-identifier-naming.LocalConstantCase |
| 21 | + value: aNy_CasE |
| 22 | +- key: readability-identifier-naming.ProtectedMemberSuffix |
| 23 | + value: _ |
| 24 | +- key: readability-identifier-naming.ClassMemberCase |
| 25 | + value: camelBack |
| 26 | +- key: readability-identifier-naming.MacroDefinitionCase |
| 27 | + value: UPPER_CASE |
| 28 | +- key: readability-identifier-naming.GlobalVariablePrefix |
| 29 | + value: g_ |
| 30 | +- key: readability-identifier-naming.GlobalConstantCase |
| 31 | + value: UPPER_CASE |
| 32 | +- key: performance-move-const-arg.CheckTriviallyCopyableMove |
| 33 | + value: false |
| 34 | +Checks: '-*, |
| 35 | + -bugprone-argument-comment, |
| 36 | + -bugprone-branch-clone, |
| 37 | + -bugprone-exception-escape, |
| 38 | + -bugprone-infinite-loop, |
| 39 | + -bugprone-lambda-function-name, |
| 40 | + -bugprone-macro-parentheses, |
| 41 | + -bugprone-narrowing-conversions, |
| 42 | + -bugprone-reserved-identifier, |
| 43 | + -bugprone-signed-char-misuse, |
| 44 | + -bugprone-string-integer-assignment, |
| 45 | + -bugprone-suspicious-include, |
| 46 | + -bugprone-use-after-move, |
| 47 | + -cppcoreguidelines-avoid-c-arrays, |
| 48 | + -cppcoreguidelines-avoid-magic-numbers, |
| 49 | + -cppcoreguidelines-avoid-non-const-global-variables, |
| 50 | + -cppcoreguidelines-explicit-virtual-functions, |
| 51 | + -cppcoreguidelines-init-variables, |
| 52 | + -cppcoreguidelines-interfaces-global-init, |
| 53 | + -cppcoreguidelines-macro-usage, |
| 54 | + -cppcoreguidelines-narrowing-conversions, |
| 55 | + -cppcoreguidelines-no-malloc, |
| 56 | + -cppcoreguidelines-non-private-member-variables-in-classes, |
| 57 | + -cppcoreguidelines-owning-memory, |
| 58 | + -cppcoreguidelines-pro-bounds-array-to-pointer-decay, |
| 59 | + -cppcoreguidelines-pro-bounds-constant-array-index, |
| 60 | + -cppcoreguidelines-pro-bounds-pointer-arithmetic, |
| 61 | + -cppcoreguidelines-pro-type-const-cast, |
| 62 | + -cppcoreguidelines-pro-type-cstyle-cast, |
| 63 | + -cppcoreguidelines-pro-type-member-init, |
| 64 | + -cppcoreguidelines-pro-type-reinterpret-cast, |
| 65 | + -cppcoreguidelines-pro-type-static-cast-downcast, |
| 66 | + -cppcoreguidelines-pro-type-union-access, |
| 67 | + -cppcoreguidelines-pro-type-vararg, |
| 68 | + -cppcoreguidelines-special-member-functions, |
| 69 | + -fuchsia-statically-constructed-objects, |
| 70 | + -llvm-namespace-comment, |
| 71 | + -misc-definitions-in-headers, |
| 72 | + -modernize-avoid-bind, |
| 73 | + -modernize-concat-nested-namespaces, |
| 74 | + -modernize-deprecated-headers, |
| 75 | + -modernize-loop-convert, |
| 76 | + -modernize-make-shared, |
| 77 | + -modernize-make-unique, |
| 78 | + -modernize-pass-by-value, |
| 79 | + -modernize-raw-string-literal, |
| 80 | + -modernize-use-auto, |
| 81 | + -modernize-use-default-member-init, |
| 82 | + -modernize-use-emplace, |
| 83 | + -modernize-use-equals-default, |
| 84 | + -modernize-use-equals-delete, |
| 85 | + -modernize-use-nodiscard, |
| 86 | + -modernize-use-nullptr, |
| 87 | + -modernize-use-using, |
| 88 | + -performance-faster-string-find, |
| 89 | + -performance-for-range-copy, |
| 90 | + -performance-implicit-conversion-in-loop, |
| 91 | + -performance-inefficient-algorithm, |
| 92 | + -performance-inefficient-string-concatenation, |
| 93 | + -performance-inefficient-vector-operation, |
| 94 | + -performance-move-const-arg, |
| 95 | + -performance-move-constructor-init, |
| 96 | + -performance-no-automatic-move, |
| 97 | + -performance-no-int-to-ptr, |
| 98 | + -performance-noexcept-move-constructor, |
| 99 | + -performance-trivially-destructible, |
| 100 | + -performance-type-promotion-in-math-fn, |
| 101 | + -performance-unnecessary-copy-initialization, |
| 102 | + -performance-unnecessary-value-param, |
| 103 | + -portability-restrict-system-includes, |
| 104 | + -portability-simd-intrinsics, |
| 105 | + -readability-avoid-const-params-in-decls, |
| 106 | + -readability-braces-around-statements, |
| 107 | + -readability-const-return-type, |
| 108 | + -readability-container-size-empty, |
| 109 | + -readability-convert-member-functions-to-static, |
| 110 | + -readability-deleted-default, |
| 111 | + -readability-else-after-return, |
| 112 | + -readability-function-cognitive-complexity, |
| 113 | + -readability-function-size, |
| 114 | + -readability-identifier-naming, |
| 115 | + -readability-implicit-bool-conversion, |
| 116 | + -readability-inconsistent-declaration-parameter-name, |
| 117 | + -readability-isolate-declaration, |
| 118 | + -readability-magic-numbers, |
| 119 | + -readability-make-member-function-const, |
| 120 | + -readability-named-parameter, |
| 121 | + -readability-non-const-parameter, |
| 122 | + -readability-qualified-auto, |
| 123 | + -readability-redundant-access-specifiers, |
| 124 | + -readability-redundant-control-flow, |
| 125 | + -readability-redundant-declaration, |
| 126 | + -readability-redundant-member-init, |
| 127 | + -readability-redundant-smartptr-get, |
| 128 | + -readability-redundant-string-cstr, |
| 129 | + -readability-redundant-string-init, |
| 130 | + -readability-simplify-boolean-expr, |
| 131 | + -readability-static-accessed-through-instance, |
| 132 | + -readability-static-definition-in-anonymous-namespace, |
| 133 | + -readability-uppercase-literal-suffix, |
| 134 | + -readability-use-anyofallof, |
| 135 | + bugprone-branch-clone, |
| 136 | + bugprone-infinite-loop, |
| 137 | + bugprone-lambda-function-name, |
| 138 | + bugprone-macro-parentheses, |
| 139 | + bugprone-reserved-identifier, |
| 140 | + bugprone-string-integer-assignment, |
| 141 | + cppcoreguidelines-init-variables, |
| 142 | + cppcoreguidelines-no-malloc, |
| 143 | + cppcoreguidelines-pro-type-member-init, |
| 144 | + misc-definitions-in-headers, |
| 145 | + modernize-concat-nested-namespaces, |
| 146 | + modernize-make-shared, |
| 147 | + modernize-make-unique, |
| 148 | + modernize-pass-by-value, |
| 149 | + modernize-use-default-member-init, |
| 150 | + modernize-use-emplace, |
| 151 | + modernize-use-equals-default, |
| 152 | + modernize-use-equals-delete, |
| 153 | + modernize-use-using, |
| 154 | + llvm-namespace-comment, |
| 155 | + performance-faster-string-find, |
| 156 | + performance-for-range-copy, |
| 157 | + performance-inefficient-algorithm, |
| 158 | + performance-move-const-arg, |
| 159 | + performance-move-constructor-init, |
| 160 | + performance-no-automatic-move, |
| 161 | + performance-noexcept-move-constructor, |
| 162 | + performance-unnecessary-copy-initialization, |
| 163 | + performance-unnecessary-value-param, |
| 164 | + readability-avoid-const-params-in-decls, |
| 165 | + readability-convert-member-functions-to-static, |
| 166 | + readability-const-return-type, |
| 167 | + readability-identifier-naming, |
| 168 | + readability-inconsistent-declaration-parameter-name, |
| 169 | + readability-make-member-function-const, |
| 170 | + readability-redundant-declaration, |
| 171 | + readability-static-definition-in-anonymous-namespace, |
| 172 | + arcadia-typeid-name-restriction, |
| 173 | + bugprone-use-after-move, |
| 174 | + performance-implicit-conversion-in-loop, |
| 175 | + readability-identifier-naming' |
0 commit comments