We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c8a7ff commit 5dd430eCopy full SHA for 5dd430e
1 file changed
scripts/gen_doc.py
@@ -68,10 +68,13 @@ def main():
68
generate_documentation_on_path(f"{directory}/")
69
for path in Path(directory).rglob("*"):
70
if path.is_dir():
71
+ # LCORE-679: Script to generate documentation should create
72
+ # README.md files just for source modules
73
if (
74
path.name == "lightspeed_stack.egg-info"
75
or path.name == "__pycache__"
76
or ".ruff_cache" in str(path)
77
+ or ".mypy_cache" in str(path)
78
):
79
continue
80
generate_documentation_on_path(path)
0 commit comments