ddnet/.clang-tidy

68 lines
2.4 KiB
Plaintext
Raw Normal View History

# Why we disabled individual checks:
#
# clang-analyzer-optin.cplusplus.UninitializedObject
# TODO: Occurs commonly in graphics_threaded.h
# clang-analyzer-optin.cplusplus.VirtualCall
# Occurs very commonly all over
# clang-analyzer-optin.performance.Padding
# Too annoying to always align for perfect padding
# clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
# TODO: Requires C11 to fix
2020-11-05 10:47:07 +00:00
# misc-unused-parameters
# TODO: Many changes
2022-01-22 16:34:23 +00:00
# readability-static-accessed-through-instance,
# Crashes: https://github.com/llvm/llvm-project/issues/53359
Checks: >
-*,
2020-11-04 18:03:10 +00:00
bugprone-*,
-bugprone-branch-clone,
-bugprone-easily-swappable-parameters,
-bugprone-implicit-widening-of-multiplication-result,
2020-11-04 18:03:10 +00:00
-bugprone-incorrect-roundings,
-bugprone-integer-division,
-bugprone-macro-parentheses,
-bugprone-narrowing-conversions,
-bugprone-parent-virtual-call,
2020-12-22 11:28:37 +00:00
-bugprone-reserved-identifier,
-bugprone-suspicious-include,
2020-11-04 18:03:10 +00:00
-bugprone-unhandled-self-assignment,
clang-analyzer-*,
-clang-analyzer-optin.cplusplus.UninitializedObject,
-clang-analyzer-optin.cplusplus.VirtualCall,
-clang-analyzer-optin.performance.Padding,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
2020-11-05 10:47:07 +00:00
misc-*,
2020-12-22 11:28:37 +00:00
-misc-no-recursion,
2020-11-05 10:47:07 +00:00
-misc-non-private-member-variables-in-classes,
-misc-static-assert,
-misc-unused-parameters,
modernize-loop-convert,
readability-avoid-const-params-in-decls,
readability-const-return-type,
readability-container-data-pointer,
readability-qualified-auto,
2022-01-22 12:54:25 +00:00
readability-container-size-empty,
readability-delete-null-pointer,
readability-inconsistent-declaration-parameter-name,
readability-misleading-indentation,
readability-misplaced-array-index,
readability-redundant-access-specifiers,
readability-redundant-control-flow,
readability-redundant-declaration,
readability-redundant-function-ptr-dereference,
readability-redundant-member-init,
readability-redundant-preprocessor,
readability-redundant-smartptr-get,
2022-01-22 16:34:23 +00:00
readability-redundant-string-cstr,
readability-redundant-string-init,
readability-simplify-boolean-expr,
readability-simplify-subscript-expr,
-readability-static-accessed-through-instance,
readability-static-definition-in-anonymous-namespace,
readability-string-compare,
readability-uniqueptr-delete-release,
readability-use-anyofallof,
2020-11-05 10:34:20 +00:00
performance-*,
-performance-no-int-to-ptr,