From 85bf1d6033c6de3de4761e18e0b0992a8814d705 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 27 Oct 2024 12:35:00 +0100 Subject: [PATCH] Meta: Ignore LibWeb text tests for newline-at-eof check --- Meta/check-newlines-at-eof.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Meta/check-newlines-at-eof.py b/Meta/check-newlines-at-eof.py index d4debe798c0..06c5a9bd6f9 100755 --- a/Meta/check-newlines-at-eof.py +++ b/Meta/check-newlines-at-eof.py @@ -14,6 +14,8 @@ def should_check_file(filename): return False if filename.startswith('Tests/LibWeb/Layout/'): return False + if filename.startswith('Tests/LibWeb/Text/'): + return False if filename.endswith('.txt'): return 'CMake' in filename return True