mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
5b7bb56a05
Clang-tidy 18 no longer has false positives with the spaceship operator. Note that I'm quite sure there are more occurrences in our headers that are not caught. This relands https://github.com/llvm/llvm-project/pull/76659 with fixes tested in https://github.com/llvm/llvm-project/pull/78746.
80 lines
2.6 KiB
YAML
80 lines
2.6 KiB
YAML
Checks: >
|
|
bugprone-copy-constructor-init,
|
|
bugprone-dangling-handle,
|
|
bugprone-infinite-loop,
|
|
bugprone-stringview-nullptr,
|
|
bugprone-use-after-move,
|
|
|
|
llvm-include-order,
|
|
llvm-namespace-comment,
|
|
|
|
misc-definitions-in-headers,
|
|
misc-misplaced-const,
|
|
misc-non-copyable-objects,
|
|
misc-uniqueptr-reset-release,
|
|
|
|
modernize-loop-convert,
|
|
modernize-redundant-void-arg,
|
|
modernize-use-nullptr,
|
|
modernize-use-override,
|
|
|
|
readability-duplicate-include,
|
|
readability-identifier-naming,
|
|
readability-function-cognitive-complexity,
|
|
readability-function-size,
|
|
readability-misplaced-array-index,
|
|
readability-redundant-control-flow,
|
|
readability-redundant-function-ptr-dereference,
|
|
readability-redundant-preprocessor,
|
|
readability-simplify-boolean-expr,
|
|
readability-simplify-subscript-expr,
|
|
readability-uniqueptr-delete-release,
|
|
|
|
CheckOptions:
|
|
- key: readability-function-cognitive-complexity.Threshold
|
|
value: 143 # TODO: bring that number down
|
|
- key: readability-function-size.LineThreshold
|
|
value: 194 # TODO: bring that number down
|
|
- key: readability-identifier-naming.GetConfigPerFile
|
|
value: false
|
|
- key: readability-identifier-naming.ParameterCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.ParameterPrefix
|
|
value: __
|
|
- key: readability-identifier-naming.PrivateMemberCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.PrivateMemberPrefix
|
|
value: __
|
|
- key: readability-identifier-naming.PrivateMemberSuffix
|
|
value: _
|
|
- key: readability-identifier-naming.LocalVariableCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.LocalVariablePrefix
|
|
value: __
|
|
- key: readability-identifier-naming.TemplateParameterCase
|
|
value: CamelCase
|
|
- key: readability-identifier-naming.TemplateParameterPrefix
|
|
value: _
|
|
- key: readability-identifier-naming.TemplateParameterIgnoredRegexp
|
|
value: (.*\:auto|expr-type) # This is https://llvm.org/PR56464
|
|
- key: readability-identifier-naming.ValueTemplateParameterIgnoredRegexp # TODO: enforce naming of variable parameters
|
|
value: .*
|
|
|
|
# TODO: investigate these checks
|
|
# bugprone-branch-clone,
|
|
# bugprone-macro-parentheses,
|
|
# cppcoreguidelines-prefer-member-initializer,
|
|
# misc-unused-parameters,
|
|
# modernize-use-bool-literals,
|
|
# modernize-use-default-member-init,
|
|
# modernize-use-equals-default,
|
|
# modernize-use-equals-delete,
|
|
# portability-restrict-system-includes,
|
|
# readability-function-cognitive-complexity,
|
|
# readability-implicit-bool-conversion,
|
|
# readability-isolate-declaration,
|
|
# readability-redundant-access-specifiers,
|
|
# readability-redundant-declaration,
|
|
# readability-redundant-member-init,
|
|
#
|