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