Browse Source

Meta: Omit vcpkg overlay ports from style and EOF lints

Andrew Kaster 1 week ago
parent
commit
6c0f97dcf2
2 changed files with 4 additions and 0 deletions
  1. 2 0
      Meta/check-newlines-at-eof.py
  2. 2 0
      Meta/check-style.py

+ 2 - 0
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

+ 2 - 0
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