diff --git a/Meta/check-newlines-at-eof.py b/Meta/check-newlines-at-eof.py index 40530cfe011..72f9b3c22fa 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('Tests/LibWeb/Text/'): return False + if filename.startswith('Meta/CMake/vcpkg/overlay-ports/'): + return False if filename.endswith('.txt'): return 'CMake' in filename return True diff --git a/Meta/check-style.py b/Meta/check-style.py index 50684084cf5..b74932c92dc 100755 --- a/Meta/check-style.py +++ b/Meta/check-style.py @@ -64,6 +64,8 @@ def should_check_file(filename): return False if filename.startswith('Base/'): return False + if filename.startswith('Meta/CMake/vcpkg/overlay-ports/'): + return False return True