mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2025-05-14 16:58:34 +00:00
Add more warnings to ignore list of clang-tidy for static code analysis
This commit is contained in:
parent
fc2cea529d
commit
7508df3655
1 changed files with 13 additions and 1 deletions
14
.github/workflows/static_code_analysis.yaml
vendored
14
.github/workflows/static_code_analysis.yaml
vendored
|
@ -42,4 +42,16 @@ jobs:
|
|||
|
||||
- name: Run Clang-Tidy
|
||||
run: |
|
||||
find . -name '*.cpp' | xargs clang-tidy-15 -checks='*, -modernize-use-trailing-return-type, -cppcoreguidelines-macro-usage, -modernize-use-auto, -modernize-use-using' -header-filter='.*vk_mem_alloc\.h' -p build || true
|
||||
find . -name '*.cpp' | xargs clang-tidy-15 -checks='*, \
|
||||
-modernize-use-trailing-return-type, \
|
||||
-cppcoreguidelines-macro-usage, \
|
||||
-modernize-use-auto, \
|
||||
-modernize-use-using \
|
||||
-modernize-use-nodiscard \
|
||||
-altera-unroll-loops \
|
||||
-misc-definitions-in-headers \
|
||||
-cppcoreguidelines-pro-bounds-pointer-arithmetic \
|
||||
-readability-function-cognitive-complexity \
|
||||
-llvmlibc-restrict-system-libc-headers \
|
||||
-cppcoreguidelines-pro-type-union-access' \
|
||||
-header-filter='.*vk_mem_alloc\.h' -p build || true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue