• Home
  • Raw
  • Download

Lines Matching full:to

8 # Unless required by applicable law or agreed to in writing, software
16 # There seems to be a bug in either clang-tidy or CMake:
36 # Currently we fix a certain version of clang-tidy to avoid unstable linting,
44 DOC "Path to clang-tidy executable")
46 … "clang-tidy not found, but requested for build. Use -DPANDA_ENABLE_CLANG_TIDY=false to suppress.")
65 # do not otherwise need to be recompiled. Nothing actually uses this
66 # definition. We add it to targets on which we run clang-tidy just to
74 # Add a target to clang-tidy checks.
80 # "-check-to-be-disabled"
81 # "-glob-to-be-disabled-*"
82 # "check-to-be-enabled"
83 # "glob-to-be-enabled-*"
86 # This function makes target_name to be co-compiled with clang-tidy.
87 # The list of CHECKS allows to pass per-target checks in additions to
90 # case for CHECKS is to pass checks to be suppressed.
98 # * -header-filter is set to check only headers of the target_name. It is supposed
131 "-hicpp-no-array-decay" # alias for cppcoreguidelines-pro-bounds-array-to-pointer-decay
144 … "-bugprone-macro-parentheses" # disabled because it is hard to write macros with types with it
148 "-google-runtime-references" # disabled to use non-const references
153 …"-clang-analyzer-optin.cplusplus.UninitializedObject" # disabled due to instability on clang-9 and…
155 "-readability-convert-member-functions-to-static" # TODO(knazarov) fix all occurences
159 … "-cppcoreguidelines-owning-memory" # TODO(dtrubenkov): look if we want to use GSL or gsl-lite
160 …"-cppcoreguidelines-pro-bounds-array-to-pointer-decay" # TODO(dtrubenkov): look into issue with A…
161 …elines-pro-bounds-constant-array-index" # TODO(dtrubenkov): look if we want to use GSL or gsl-lite
162 … "-cppcoreguidelines-pro-type-const-cast" # TODO(dtrubenkov): consider to remove from global list
163 …"-cppcoreguidelines-pro-type-reinterpret-cast" # TODO(dtrubenkov): consider to remove from global…
166 "-fuchsia-overloaded-operator" # TODO(dtrubenkov): consider to remove from global list
173 # NB! Replace with list(JOIN ...) after switching to CMake 3.12+
179 # NB! Replace with list(JOIN ...) after switching to CMake 3.12+