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
parent 8455d23a4b
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

@ -18,6 +18,8 @@ def should_check_file(filename):
return False
if filename.startswith('Tests/LibWeb/Text/'):
return False
if filename.startswith('Meta/CMake/vcpkg/overlay-ports/'):
return False
if filename.endswith('.txt'):
return 'CMake' in filename
return True

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