mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
Meta: Omit vcpkg overlay ports from style and EOF lints
This commit is contained in:
parent
8455d23a4b
commit
6c0f97dcf2
Notes:
github-actions[bot]
2025-04-02 16:51:36 +00:00
Author: https://github.com/ADKaster Commit: https://github.com/LadybirdBrowser/ladybird/commit/6c0f97dcf28 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4176 Reviewed-by: https://github.com/trflynn89 ✅
2 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue