Exclude .md and LICENSE files

This commit is contained in:
Hoang Hong Quan
2025-12-30 14:35:38 +07:00
parent 904b6b798d
commit 9684b89862

View File

@@ -30,7 +30,7 @@ class IntegrityChecker:
continue continue
for name in files: for name in files:
if '.git' in name or ".pyc" in name: if '.git' in name or ".pyc" in name or ".md" in name or "LICENSE" in name:
continue continue
file_path = os.path.join(root, name) file_path = os.path.join(root, name)