Meta: Omit vcpkg overlay ports from style and EOF lints

This commit is contained in:
Andrew Kaster 2025-04-01 09:57:02 -06:00 committed by Andrew Kaster
commit 6c0f97dcf2
Notes: github-actions[bot] 2025-04-02 16:51:36 +00:00
2 changed files with 4 additions and 0 deletions

View file

@ -64,6 +64,8 @@ def should_check_file(filename):
return False
if filename.startswith('Base/'):
return False
if filename.startswith('Meta/CMake/vcpkg/overlay-ports/'):
return False
return True