stamenStatic Menu Generator |
git clone git://git.dimitrijedobrota.com/stamen.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
.clang-tidy (6805B)
1 --- 2 # Enable ALL the things! Except not really 3 # misc-non-private-member-variables-in-classes: the options don't do anything 4 # modernize-use-nodiscard: too aggressive, attribute is situationally useful 5 Checks: "*,\ 6 -altera-*,\ 7 -fuchsia-*,\ 8 -llvmlibc-*,\ 9 -*-avoid-goto,\ 10 -*-braces-around-statements,\ 11 -*-c-arrays,\ 12 -*-vararg,\ 13 -*-array*decay,\ 14 -bugprone-argument-comment,\ 15 -bugprone-easily-swappable-parameters,\ 16 -cert-dcl50-cpp,\ 17 -concurrency-mt-unsafe,\ 18 -cppcoreguidelines-avoid-magic-numbers,\ 19 -fuchsia-multiple-inheritance,\ 20 -hicpp-signed-bitwise,\ 21 -llvm-header-guard,\ 22 -llvm-include-order,\ 23 -misc-no-recursion,\ 24 -misc-non-private-member-variables-in-classes,\ 25 -modernize-use-designated-initializers,\ 26 -modernize-use-nodiscard,\ 27 -modernize-use-trailing-return-type,\ 28 -readability-function-cognitive-complexity,\ 29 -misc-include-cleaner,\ 30 -readability-magic-numbers 31 " 32 WarningsAsErrors: '' 33 CheckOptions: 34 - key: 'bugprone-argument-comment.StrictMode' 35 value: 'true' 36 # Prefer using enum classes with 2 values for parameters instead of bools 37 - key: 'bugprone-argument-comment.CommentBoolLiterals' 38 value: 'true' 39 - key: 'bugprone-misplaced-widening-cast.CheckImplicitCasts' 40 value: 'true' 41 - key: 'bugprone-sizeof-expression.WarnOnSizeOfIntegerExpression' 42 value: 'true' 43 - key: 'bugprone-suspicious-string-compare.WarnOnLogicalNotComparison' 44 value: 'true' 45 - key: 'readability-simplify-boolean-expr.ChainedConditionalReturn' 46 value: 'true' 47 - key: 'readability-simplify-boolean-expr.ChainedConditionalAssignment' 48 value: 'true' 49 - key: 'readability-uniqueptr-delete-release.PreferResetCall' 50 value: 'true' 51 - key: 'cppcoreguidelines-init-variables.MathHeader' 52 value: '<cmath>' 53 - key: 'cppcoreguidelines-narrowing-conversions.PedanticMode' 54 value: 'true' 55 - key: 'readability-else-after-return.WarnOnUnfixable' 56 value: 'true' 57 - key: 'readability-else-after-return.WarnOnConditionVariables' 58 value: 'true' 59 - key: 'readability-inconsistent-declaration-parameter-name.Strict' 60 value: 'true' 61 - key: 'readability-qualified-auto.AddConstToQualified' 62 value: 'true' 63 - key: 'readability-redundant-access-specifiers.CheckFirstDeclaration' 64 value: 'true' 65 # These seem to be the most common identifier styles 66 - key: 'readability-identifier-naming.AbstractClassCase' 67 value: 'lower_case' 68 - key: 'readability-identifier-naming.ClassCase' 69 value: 'CamelCase' 70 - key: 'readability-identifier-naming.ClassConstantCase' 71 value: 'lower_case' 72 - key: 'readability-identifier-naming.ClassMemberCase' 73 value: 'lower_case' 74 - key: 'readability-identifier-naming.ClassMethodCase' 75 value: 'lower_case' 76 - key: 'readability-identifier-naming.ConstantCase' 77 value: 'lower_case' 78 - key: 'readability-identifier-naming.ConstantMemberCase' 79 value: 'lower_case' 80 - key: 'readability-identifier-naming.ConstantParameterCase' 81 value: 'lower_case' 82 - key: 'readability-identifier-naming.ConstantPointerParameterCase' 83 value: 'lower_case' 84 - key: 'readability-identifier-naming.ConstexprFunctionCase' 85 value: 'lower_case' 86 - key: 'readability-identifier-naming.ConstexprMethodCase' 87 value: 'lower_case' 88 - key: 'readability-identifier-naming.ConstexprVariableCase' 89 value: 'lower_case' 90 - key: 'readability-identifier-naming.EnumCase' 91 value: 'CamelCase' 92 - key: 'readability-identifier-naming.EnumConstantCase' 93 value: 'CamelCase' 94 - key: 'readability-identifier-naming.FunctionCase' 95 value: 'lower_case' 96 - key: 'readability-identifier-naming.GlobalConstantCase' 97 value: 'lower_case' 98 - key: 'readability-identifier-naming.GlobalConstantPointerCase' 99 value: 'lower_case' 100 - key: 'readability-identifier-naming.GlobalFunctionCase' 101 value: 'lower_case' 102 - key: 'readability-identifier-naming.GlobalPointerCase' 103 value: 'lower_case' 104 - key: 'readability-identifier-naming.GlobalVariableCase' 105 value: 'lower_case' 106 - key: 'readability-identifier-naming.InlineNamespaceCase' 107 value: 'lower_case' 108 - key: 'readability-identifier-naming.LocalConstantCase' 109 value: 'lower_case' 110 - key: 'readability-identifier-naming.LocalConstantPointerCase' 111 value: 'lower_case' 112 - key: 'readability-identifier-naming.LocalPointerCase' 113 value: 'lower_case' 114 - key: 'readability-identifier-naming.LocalVariableCase' 115 value: 'lower_case' 116 - key: 'readability-identifier-naming.MacroDefinitionCase' 117 value: 'UPPER_CASE' 118 - key: 'readability-identifier-naming.MemberCase' 119 value: 'lower_case' 120 - key: 'readability-identifier-naming.MethodCase' 121 value: 'lower_case' 122 - key: 'readability-identifier-naming.NamespaceCase' 123 value: 'lower_case' 124 - key: 'readability-identifier-naming.ParameterCase' 125 value: 'lower_case' 126 - key: 'readability-identifier-naming.ParameterPackCase' 127 value: 'lower_case' 128 - key: 'readability-identifier-naming.PointerParameterCase' 129 value: 'lower_case' 130 - key: 'readability-identifier-naming.PrivateMemberCase' 131 value: 'lower_case' 132 - key: 'readability-identifier-naming.PrivateMemberPrefix' 133 value: 'm_' 134 - key: 'readability-identifier-naming.PrivateMethodCase' 135 value: 'lower_case' 136 - key: 'readability-identifier-naming.ProtectedMemberCase' 137 value: 'lower_case' 138 - key: 'readability-identifier-naming.ProtectedMemberPrefix' 139 value: 'm_' 140 - key: 'readability-identifier-naming.ProtectedMethodCase' 141 value: 'lower_case' 142 - key: 'readability-identifier-naming.PublicMemberCase' 143 value: 'lower_case' 144 - key: 'readability-identifier-naming.PublicMethodCase' 145 value: 'lower_case' 146 - key: 'readability-identifier-naming.ScopedEnumConstantCase' 147 value: 'CamelCase' 148 - key: 'readability-identifier-naming.StaticConstantCase' 149 value: 'lower_case' 150 - key: 'readability-identifier-naming.StaticVariableCase' 151 value: 'lower_case' 152 - key: 'readability-identifier-naming.StructCase' 153 value: 'lower_case' 154 - key: 'readability-identifier-naming.TemplateParameterCase' 155 value: 'CamelCase' 156 - key: 'readability-identifier-naming.TemplateTemplateParameterCase' 157 value: 'CamelCase' 158 - key: 'readability-identifier-naming.TypeAliasCase' 159 value: 'lower_case' 160 - key: 'readability-identifier-naming.TypedefCase' 161 value: 'lower_case' 162 - key: 'readability-identifier-naming.TypeTemplateParameterCase' 163 value: 'CamelCase' 164 - key: 'readability-identifier-naming.TypeTemplateParameterIgnoredRegexp' 165 value: 'expr-type' 166 - key: 'readability-identifier-naming.UnionCase' 167 value: 'lower_case' 168 - key: 'readability-identifier-naming.ValueTemplateParameterCase' 169 value: 'CamelCase' 170 - key: 'readability-identifier-naming.VariableCase' 171 value: 'lower_case' 172 - key: 'readability-identifier-naming.VirtualMethodCase' 173 value: 'lower_case' 174 ...