summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cpptools_clangtidychecks.h
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@qt.io>2019-10-21 14:59:57 +0200
committerNikolai Kosjar <nikolai.kosjar@qt.io>2019-12-03 13:23:13 +0000
commit0d7a30cdfe3f9611ce0653c556cc5a8d673ee061 (patch)
tree0b31979ff544e9e4e95fbb08d5593f9a46f824bf /src/plugins/cpptools/cpptools_clangtidychecks.h
parent9a7f5e08fd170e032c726b55f26908d4fc2a7b96 (diff)
downloadqt-creator-0d7a30cdfe3f9611ce0653c556cc5a8d673ee061.tar.gz
ClangTools: Query the tools for supported checks
...instead of hardcoding them for a particular version of clang-tidy/clazy. While at it, move also the tidy/clazy widgets to ClangTools as this simplifies feeding data to them. Reduce also the built-in configs to a single one using clang-tidy's and clazy's default checks as they look very reasonable and saves us some porting effort. Also, our previous built-in configs were just too numerous. Change-Id: Ib9297acb7810a940b86a23a8695530506a570394 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cpptools_clangtidychecks.h')
-rw-r--r--src/plugins/cpptools/cpptools_clangtidychecks.h799
1 files changed, 0 insertions, 799 deletions
diff --git a/src/plugins/cpptools/cpptools_clangtidychecks.h b/src/plugins/cpptools/cpptools_clangtidychecks.h
deleted file mode 100644
index 7178b3aa92..0000000000
--- a/src/plugins/cpptools/cpptools_clangtidychecks.h
+++ /dev/null
@@ -1,799 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2018 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt Creator.
-**
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-****************************************************************************/
-
-#pragma once
-
-#include <vector>
-
-namespace CppTools {
-namespace Constants {
-
-struct TidyNode
-{
- const std::vector<TidyNode> children;
- const char *name = nullptr;
- TidyNode(const char *name, std::vector<TidyNode> &&children)
- : children(std::move(children))
- , name(name)
- {}
- TidyNode(const char *name) : name(name) {}
-};
-
-// CLANG-UPGRADE-CHECK: Run 'scripts/generateClangTidyChecks.py' after Clang upgrade to
-// update this header.
-static const TidyNode CLANG_TIDY_CHECKS_ROOT
-{
- "",
- {
- {
- "abseil-",
- {
- {
- "duration-",
- {
- "comparison",
- "division",
- {
- "factory-",
- {
- "float",
- "scale"
- }
- },
- "subtraction"
- }
- },
- "faster-strsplit-delimiter",
- {
- "no-",
- {
- "internal-dependencies",
- "namespace"
- }
- },
- "redundant-strcat-calls",
- "str-cat-append",
- "string-find-startswith",
- "upgrade-duration-conversions"
- }
- },
- {
- "android-",
- {
- {
- "cloexec-",
- {
- "accept",
- "accept4",
- "creat",
- "dup",
- {
- "epoll-",
- {
- "create",
- "create1"
- }
- },
- "fopen",
- {
- "inotify-",
- {
- "init",
- "init1"
- }
- },
- "memfd-create",
- "open",
- "socket"
- }
- },
- "comparison-in-temp-failure-retry"
- }
- },
- {
- "boost-",
- {
- "use-to-string"
- }
- },
- {
- "bugprone-",
- {
- "argument-comment",
- "assert-side-effect",
- "bool-pointer-implicit-conversion",
- "copy-constructor-init",
- "dangling-handle",
- "exception-escape",
- "fold-init-type",
- "forward-declaration-namespace",
- "forwarding-reference-overload",
- "inaccurate-erase",
- "incorrect-roundings",
- "integer-division",
- "lambda-function-name",
- {
- "macro-",
- {
- "parentheses",
- "repeated-side-effects"
- }
- },
- {
- "misplaced-",
- {
- "operator-in-strlen-in-alloc",
- "widening-cast"
- }
- },
- "move-forwarding-reference",
- "multiple-statement-macro",
- "narrowing-conversions",
- "parent-virtual-call",
- {
- "sizeof-",
- {
- "container",
- "expression"
- }
- },
- {
- "string-",
- {
- "constructor",
- "integer-assignment",
- "literal-with-embedded-nul"
- }
- },
- {
- "suspicious-",
- {
- "enum-usage",
- "memset-usage",
- "missing-comma",
- "semicolon",
- "string-compare"
- }
- },
- "swapped-arguments",
- "terminating-continue",
- "throw-keyword-missing",
- "too-small-loop-variable",
- "undefined-memory-manipulation",
- "undelegated-constructor",
- {
- "unused-",
- {
- "raii",
- "return-value"
- }
- },
- "use-after-move",
- "virtual-near-miss"
- }
- },
- {
- "cert-",
- {
- "dcl03-c",
- "dcl16-c",
- "dcl21-cpp",
- "dcl50-cpp",
- "dcl54-cpp",
- "dcl58-cpp",
- "dcl59-cpp",
- "env33-c",
- "err09-cpp",
- "err34-c",
- "err52-cpp",
- "err58-cpp",
- "err60-cpp",
- "err61-cpp",
- "fio38-c",
- "flp30-c",
- "msc30-c",
- "msc32-c",
- "msc50-cpp",
- "msc51-cpp",
- "oop11-cpp"
- }
- },
- {
- "clang-analyzer-",
- {
- {
- "apiModeling.",
- {
- "StdCLibraryFunctions",
- "TrustNonnull",
- "google.GTest"
- }
- },
- {
- "core.",
- {
- "CallAndMessage",
- "DivideZero",
- "DynamicTypePropagation",
- "NonNullParamChecker",
- "NonnilStringConstants",
- "NullDereference",
- "StackAddressEscape",
- "UndefinedBinaryOperatorResult",
- "VLASize",
- {
- "builtin.",
- {
- "BuiltinFunctions",
- "NoReturnFunctions"
- }
- },
- {
- "uninitialized.",
- {
- "ArraySubscript",
- "Assign",
- "Branch",
- "CapturedBlockVariable",
- "UndefReturn"
- }
- }
- }
- },
- {
- "cplusplus.",
- {
- "InnerPointer",
- "Move",
- "NewDelete",
- "NewDeleteLeaks",
- "SelfAssignment"
- }
- },
- "deadcode.DeadStores",
- {
- "nullability.",
- {
- "NullPassedToNonnull",
- "NullReturnedFromNonnull",
- "NullableDereferenced",
- "NullablePassedToNonnull",
- "NullableReturnedFromNonnull"
- }
- },
- {
- "optin.",
- {
- "cplusplus.VirtualCall",
- "mpi.MPI-Checker",
- {
- "osx.",
- {
- {
- "cocoa.",
- {
- {
- "localizability.",
- {
- "EmptyLocalizationContextChecker",
- "NonLocalizedStringChecker"
- }
- }
- }
- }
- }
- },
- {
- "performance.",
- {
- "GCDAntipattern",
- "Padding"
- }
- },
- "portability.UnixAPI"
- }
- },
- {
- "osx.",
- {
- "API",
- "NumberObjectConversion",
- "OSObjectRetainCount",
- "ObjCProperty",
- "SecKeychainAPI",
- {
- "cocoa.",
- {
- "AtSync",
- "AutoreleaseWrite",
- "ClassRelease",
- "Dealloc",
- "IncompatibleMethodTypes",
- "Loops",
- "MissingSuperCall",
- "NSAutoreleasePool",
- "NSError",
- "NilArg",
- "NonNilReturnValue",
- "ObjCGenerics",
- "RetainCount",
- "RunLoopAutoreleaseLeak",
- "SelfInit",
- "SuperDealloc",
- "UnusedIvars",
- "VariadicMethodTypes"
- }
- },
- {
- "coreFoundation.",
- {
- "CFError",
- "CFNumber",
- "CFRetainRelease",
- {
- "containers.",
- {
- "OutOfBounds",
- "PointerSizedValues"
- }
- }
- }
- }
- }
- },
- {
- "security.",
- {
- "FloatLoopCounter",
- {
- "insecureAPI.",
- {
- "UncheckedReturn",
- "bcmp",
- "bcopy",
- "bzero",
- "getpw",
- "gets",
- "mkstemp",
- "mktemp",
- "rand",
- "strcpy",
- "vfork"
- }
- }
- }
- },
- {
- "unix.",
- {
- "API",
- "Malloc",
- "MallocSizeof",
- "MismatchedDeallocator",
- "Vfork",
- {
- "cstring.",
- {
- "BadSizeArg",
- "NullArg"
- }
- }
- }
- },
- {
- "valist.",
- {
- "CopyToSelf",
- "Uninitialized",
- "Unterminated"
- }
- }
- }
- },
- {
- "cppcoreguidelines-",
- {
- {
- "avoid-",
- {
- "c-arrays",
- "goto",
- "magic-numbers"
- }
- },
- "c-copy-assignment-signature",
- "interfaces-global-init",
- "macro-usage",
- "narrowing-conversions",
- "no-malloc",
- "non-private-member-variables-in-classes",
- "owning-memory",
- {
- "pro-",
- {
- {
- "bounds-",
- {
- "array-to-pointer-decay",
- "constant-array-index",
- "pointer-arithmetic"
- }
- },
- {
- "type-",
- {
- "const-cast",
- "cstyle-cast",
- "member-init",
- "reinterpret-cast",
- "static-cast-downcast",
- "union-access",
- "vararg"
- }
- }
- }
- },
- "slicing",
- "special-member-functions"
- }
- },
- {
- "fuchsia-",
- {
- "default-arguments",
- "header-anon-namespaces",
- "multiple-inheritance",
- "overloaded-operator",
- "restrict-system-includes",
- "statically-constructed-objects",
- "trailing-return",
- "virtual-inheritance"
- }
- },
- {
- "google-",
- {
- {
- "build-",
- {
- "explicit-make-pair",
- "namespaces",
- "using-namespace"
- }
- },
- "default-arguments",
- "explicit-constructor",
- "global-names-in-headers",
- {
- "objc-",
- {
- "avoid-throwing-exception",
- "function-naming",
- "global-variable-declaration"
- }
- },
- {
- "readability-",
- {
- "braces-around-statements",
- "casting",
- "function-size",
- "namespace-comments",
- "todo"
- }
- },
- {
- "runtime-",
- {
- "int",
- "operator",
- "references"
- }
- }
- }
- },
- {
- "hicpp-",
- {
- {
- "avoid-",
- {
- "c-arrays",
- "goto"
- }
- },
- "braces-around-statements",
- "deprecated-headers",
- "exception-baseclass",
- "explicit-conversions",
- "function-size",
- "invalid-access-moved",
- "member-init",
- "move-const-arg",
- "multiway-paths-covered",
- "named-parameter",
- "new-delete-operators",
- {
- "no-",
- {
- "array-decay",
- "assembler",
- "malloc"
- }
- },
- "noexcept-move",
- "signed-bitwise",
- "special-member-functions",
- "static-assert",
- "undelegated-constructor",
- "uppercase-literal-suffix",
- {
- "use-",
- {
- "auto",
- "emplace",
- {
- "equals-",
- {
- "default",
- "delete"
- }
- },
- "noexcept",
- "nullptr",
- "override"
- }
- },
- "vararg"
- }
- },
- {
- "llvm-",
- {
- "header-guard",
- "include-order",
- "namespace-comment",
- "twine-local"
- }
- },
- {
- "misc-",
- {
- "definitions-in-headers",
- "misplaced-const",
- "new-delete-overloads",
- {
- "non-",
- {
- "copyable-objects",
- "private-member-variables-in-classes"
- }
- },
- "redundant-expression",
- "static-assert",
- "throw-by-value-catch-by-reference",
- "unconventional-assign-operator",
- "uniqueptr-reset-release",
- {
- "unused-",
- {
- "alias-decls",
- "parameters",
- "using-decls"
- }
- }
- }
- },
- {
- "modernize-",
- {
- {
- "avoid-",
- {
- "bind",
- "c-arrays"
- }
- },
- "concat-nested-namespaces",
- {
- "deprecated-",
- {
- "headers",
- "ios-base-aliases"
- }
- },
- "loop-convert",
- {
- "make-",
- {
- "shared",
- "unique"
- }
- },
- "pass-by-value",
- "raw-string-literal",
- "redundant-void-arg",
- {
- "replace-",
- {
- "auto-ptr",
- "random-shuffle"
- }
- },
- "return-braced-init-list",
- "shrink-to-fit",
- "unary-static-assert",
- {
- "use-",
- {
- "auto",
- "bool-literals",
- "default-member-init",
- "emplace",
- {
- "equals-",
- {
- "default",
- "delete"
- }
- },
- "nodiscard",
- "noexcept",
- "nullptr",
- "override",
- "transparent-functors",
- "uncaught-exceptions",
- "using"
- }
- }
- }
- },
- {
- "mpi-",
- {
- "buffer-deref",
- "type-mismatch"
- }
- },
- {
- "objc-",
- {
- {
- "avoid-",
- {
- "nserror-init",
- "spinlock"
- }
- },
- "forbidden-subclassing",
- "property-declaration"
- }
- },
- {
- "performance-",
- {
- "faster-string-find",
- "for-range-copy",
- "implicit-conversion-in-loop",
- {
- "inefficient-",
- {
- "algorithm",
- "string-concatenation",
- "vector-operation"
- }
- },
- {
- "move-",
- {
- "const-arg",
- "constructor-init"
- }
- },
- "noexcept-move-constructor",
- "type-promotion-in-math-fn",
- {
- "unnecessary-",
- {
- "copy-initialization",
- "value-param"
- }
- }
- }
- },
- {
- "portability-",
- {
- "simd-intrinsics"
- }
- },
- {
- "readability-",
- {
- "avoid-const-params-in-decls",
- "braces-around-statements",
- "const-return-type",
- "container-size-empty",
- "delete-null-pointer",
- "deleted-default",
- "else-after-return",
- "function-size",
- "identifier-naming",
- "implicit-bool-conversion",
- "inconsistent-declaration-parameter-name",
- "isolate-declaration",
- "magic-numbers",
- "misleading-indentation",
- "misplaced-array-index",
- "named-parameter",
- "non-const-parameter",
- {
- "redundant-",
- {
- "control-flow",
- "declaration",
- "function-ptr-dereference",
- "member-init",
- "preprocessor",
- "smartptr-get",
- {
- "string-",
- {
- "cstr",
- "init"
- }
- }
- }
- },
- {
- "simplify-",
- {
- "boolean-expr",
- "subscript-expr"
- }
- },
- {
- "static-",
- {
- "accessed-through-instance",
- "definition-in-anonymous-namespace"
- }
- },
- "string-compare",
- "uniqueptr-delete-release",
- "uppercase-literal-suffix"
- }
- },
- {
- "zircon-",
- {
- "temporary-objects"
- }
- }
- }
-};
-
-} // namespace Constants
-} // namespace CppTools