Fix badword token from clang-tidy config

Replace the old “all checks minus specific modules” pattern with an explicit allow-list of clang-tidy modules,
preserving the intended set of enabled checks while avoiding the banned word that triggered the policy error

Signed-off-by: shamao01 <shai.maor@arm.com>
Change-Id: I6f392075b42be0cd278bdd4aff6ee2064d8c52e0
This commit is contained in:
shamao01 2026-01-28 15:10:40 +02:00 committed by Shai Maor
parent feb069171f
commit 823d5baf22

View file

@ -96,7 +96,14 @@ clang_tidy:
- set -o pipefail
- |
run-clang-tidy -p build -j "$(nproc)" -quiet -header-filter="$(pwd)/.*" \
-checks='*,
-checks='clang-analyzer-*,
bugprone-*,
cert-*,
cppcoreguidelines-*,
hicpp-*,
misc-*,
performance-*,
readability-*,
-bugprone-easily-swappable-parameters,
-bugprone-exception-escape,
-bugprone-implicit-widening-of-multiplication-result,
@ -187,7 +194,6 @@ clang_tidy:
-altera-*,
-boost-*,
-fuchsia-*,
-google-*,
-llvm-*,
-llvmlibc-*,
-modernize-*' \