From 90ea11868275cae9b6372ba264070a69f5befd83 Mon Sep 17 00:00:00 2001 From: KitsuneAlex Date: Sat, 4 May 2024 22:32:55 +0200 Subject: [PATCH] Remove .clang-tidy file as it doesn't fit the style correctly --- .clang-tidy | 76 ----------------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 .clang-tidy diff --git a/.clang-tidy b/.clang-tidy deleted file mode 100644 index 7bbeee6..0000000 --- a/.clang-tidy +++ /dev/null @@ -1,76 +0,0 @@ -Checks: ' --*, -readability-*, --readability-magic-numbers, -modernize-*, --modernize-use-trailing-return-type, --modernize-use-default-member-init, -cppcoreguidelines-*, --cppcoreguidelines-owning-memory, --cppcoreguidelines-use-default-member-init, --cppcoreguidelines-avoid-magic-numbers, --cppcoreguidelines-pro-type-reinterpret-cast, --cppcoreguidelines-pro-bounds-pointer-arithmetic, --cppcoreguidelines-macro-usage, --cppcoreguidelines-missing-std-forward, --google-explicit-constructor, --fuchsia-overloaded-operator, -bugprone-*, --bugprone-assert-side-effect, --bugprone-assignment-in-if-condition, --bugprone-easily-swappable-parameters, --bugprone-reserved-identifier -' -HeaderFilterRegex: '' -AnalyzeTemporaryDtors: false -CheckOptions: - - key: modernize-replace-auto-ptr.IncludeStyle - value: llvm - - key: readability-uppercase-literal-suffix.NewSuffixes - value: L;LL;LU;LLU - - key: readability-identifier-naming.NamespaceCase - value: lower_case - - key: readability-identifier-naming.ClassCase - value: CamelCase - - key: readability-identifier-naming.EnumConstantCase - value: UPPER_CASE - - key: readability-identifier-naming.MemberCase - value: lower_case - - key: readability-identifier-naming.ClassMemberCase - value: lower_case - - key: readability-identifier-naming.VariableCase - value: lower_case - - key: readability-identifier-naming.PrivateMemberPrefix - value: _ - - key: readability-identifier-naming.ProtectedMemberPrefix - value: _ - - key: readability-identifier-naming.FunctionCase - value: lower_case - - key: readability-identifier-naming.ConstantCase - value: UPPER_CASE - - key: readability-identifier-naming.ConstantParameterCase - value: lower_case - - key: readability-identifier-naming.ClassConstantCase - value: UPPER_CASE - - key: readability-identifier-naming.StaticConstantCase - value: UPPER_CASE - - key: readability-identifier-naming.StaticVariableCase - value: lower_case - - key: readability-identifier-naming.LocalConstantCase - value: UPPER_CASE - - key: readability-identifier-naming.TypedefCase - value: CamelCase - - key: readability-identifier-naming.TypeAliasCase - value: CamelCase - - key: readability-identifier-naming.TemplateParameterCase - value: CamelCase - - key: readability-identifier-naming.TemplateParameterPrefix - value: T - - key: readability-identifier-naming.TemplateTemplateParameterCase - value: CamelCase - - key: readability-identifier-naming.TemplateTemplateParameterPrefix - value: T - - key: readability-identifier-naming.ValueTemplateParameterCase - value: CamelCase - - key: readability-identifier-naming.ValueTemplateParameterPrefix - value: T