mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
module formatter skips modules with leading underscore to avoid
documenting them. Soon will be patched to recognize them as either deprecated or an alias
This commit is contained in:
parent
b3b356480d
commit
5ab4467708
1 changed files with 3 additions and 0 deletions
|
@ -128,6 +128,9 @@ def list_modules(module_dir):
|
||||||
files2 = glob.glob("%s/*" % d)
|
files2 = glob.glob("%s/*" % d)
|
||||||
for f in files2:
|
for f in files2:
|
||||||
|
|
||||||
|
if os.path.basename(f).startswith("_"): # skip deprecated/aliases for now
|
||||||
|
continue
|
||||||
|
|
||||||
if not f.endswith(".py") or f.endswith('__init__.py'):
|
if not f.endswith(".py") or f.endswith('__init__.py'):
|
||||||
# windows powershell modules have documentation stubs in python docstring
|
# windows powershell modules have documentation stubs in python docstring
|
||||||
# format (they are not executed) so skip the ps1 format files
|
# format (they are not executed) so skip the ps1 format files
|
||||||
|
|
Loading…
Reference in a new issue