mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 07:41:01 +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: 6c0f97dcf2
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
|
return False
|
||||||
if filename.startswith('Tests/LibWeb/Text/'):
|
if filename.startswith('Tests/LibWeb/Text/'):
|
||||||
return False
|
return False
|
||||||
|
if filename.startswith('Meta/CMake/vcpkg/overlay-ports/'):
|
||||||
|
return False
|
||||||
if filename.endswith('.txt'):
|
if filename.endswith('.txt'):
|
||||||
return 'CMake' in filename
|
return 'CMake' in filename
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -64,6 +64,8 @@ def should_check_file(filename):
|
||||||
return False
|
return False
|
||||||
if filename.startswith('Base/'):
|
if filename.startswith('Base/'):
|
||||||
return False
|
return False
|
||||||
|
if filename.startswith('Meta/CMake/vcpkg/overlay-ports/'):
|
||||||
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue