chore: prototype for unused imports checker

This commit is contained in:
aclist 2026-08-20 14:32:44 +09:00 committed by GitHub
parent 76b3186ed7
commit e32c7fcacb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

27
scripts/unused_imports.py Normal file
View File

@ -0,0 +1,27 @@
from pathlib import Path
def iterate(search_str: str) -> None:
# TODO: exclude files from .gitignore
print()
print(f"Searching for '{search_str}'")
print()
files = Path(".").rglob("*")
ignore = [".git", ".mypy", "build/", "test.py"]
for file in files:
if file.is_dir():
continue
if any(s in str(file) for s in ignore):
continue
try:
text = file.read_text()
if search_str in text:
c = text.count(search_str)
if 0 < c < 2:
print(file, c)
except Exception:
continue
imports = ["Pango", "GObject", "GLib", "Gdk", "Gtk"]
for i in imports:
iterate(i)