Meta: Ignore LibWeb text tests for newline-at-eof check

This commit is contained in:
Andreas Kling 2024-10-27 12:35:00 +01:00 committed by Andreas Kling
parent a640fcc693
commit 85bf1d6033
Notes: github-actions[bot] 2024-10-27 12:34:36 +00:00

View file

@ -14,6 +14,8 @@ def should_check_file(filename):
return False return False
if filename.startswith('Tests/LibWeb/Layout/'): if filename.startswith('Tests/LibWeb/Layout/'):
return False return False
if filename.startswith('Tests/LibWeb/Text/'):
return False
if filename.endswith('.txt'): if filename.endswith('.txt'):
return 'CMake' in filename return 'CMake' in filename
return True return True