From f08e01c5d988c3c2256a25be44900998b669b504 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Fri, 24 Jan 2025 22:47:31 +0100 Subject: [PATCH] Meta: Don't check for newlines at EOF in Tests/LibWeb/Ref/ There are tests where absence of newlines at EOF is important and required to check certain behavior. --- 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 06c5a9bd6f9..40530cfe011 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/Ref/'): + return False if filename.startswith('Tests/LibWeb/Text/'): return False if filename.endswith('.txt'):