================
@@ -86,15 +86,12 @@ def getListOfFiles(clang_tidy_path: str) -> List[str]:
os.path.join(clang_tidy_path, "..", "test", "clang-tidy", "checkers",
"**"),
recursive=True,
)
- files += glob.glob(
- os.path.join(clang_tidy_path, "..", "docs", "clang-tidy", "checks",
"*.rst")
- )
- files += glob.glob(
- os.path.join(
- clang_tidy_path, "..", "docs", "clang-tidy", "checks", "*", "*.rst"
- ),
- recursive=True,
- )
+ docs_path = os.path.join(clang_tidy_path, "..", "docs", "clang-tidy",
"checks")
+ # TODO: Stop discovering reST files once all clang-tidy check
+ # documentation has been migrated to MyST.
+ for extension in (".md", ".rst"):
+ files += glob.glob(os.path.join(docs_path, f"*{extension}"))
+ files += glob.glob(os.path.join(docs_path, "*", f"*{extension}"))
----------------
vbvictor wrote:
Do we dropped `recursive` on purpose here?
https://github.com/llvm/llvm-project/pull/210577
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits