MCPcopy Create free account
hub / github.com/crisxuan/bestJavaer / all_article_files

Function all_article_files

scripts/check_article_quality.py:98–104  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

96
97
98def all_article_files() -> list[Path]:
99 files: list[Path] = []
100 for root in ARTICLE_ROOTS:
101 base = Path(root)
102 if base.exists():
103 files.extend(p for p in base.rglob("*.md") if is_article_path(p))
104 return sorted(files)
105
106
107def changed_files(base: str, head: str) -> list[Path]:

Callers 2

changed_filesFunction · 0.85
collect_pathsFunction · 0.85

Calls 1

is_article_pathFunction · 0.85

Tested by

no test coverage detected