mirror of
https://gitlab.freedesktop.org/mesa/vulkan-wsi-layer.git
synced 2026-05-02 09:38:06 +02:00
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:
parent
feb069171f
commit
823d5baf22
1 changed files with 8 additions and 2 deletions
|
|
@ -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-*' \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue