From af8d5207f6e4b9ce8b58ebc49a13126750ad19dc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 11 Mar 2023 13:05:35 +0100 Subject: [PATCH] Meta: Don't check for newlines at EOF in Tests/LibWeb/Layout/ --- 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 b28bdb4a21..ba2e878e02 100755 --- a/Meta/check-newlines-at-eof.py +++ b/Meta/check-newlines-at-eof.py @@ -18,6 +18,8 @@ def should_check_file(filename): return False if filename.startswith('Userland/Libraries/LibCpp/Tests/preprocessor/'): return False + if filename.startswith('Tests/LibWeb/Layout/'): + return False if filename == 'Kernel/FileSystem/Ext2FS/Definitions.h': return False if filename.endswith('.txt'):