No RETURN should be an error for new modules
This commit is contained in:
parent
69ec1e8e6a
commit
bc51bb97dd
1 changed files with 4 additions and 1 deletions
|
@ -400,7 +400,10 @@ class ModuleValidator(Validator):
|
|||
if not bool(examples):
|
||||
self.errors.append('No EXAMPLES provided')
|
||||
if not bool(ret):
|
||||
self.warnings.append('No RETURN provided')
|
||||
if self._is_new_module():
|
||||
self.errors.append('No RETURN provided')
|
||||
else:
|
||||
self.warnings.append('No RETURN provided')
|
||||
else:
|
||||
try:
|
||||
yaml.safe_load(ret)
|
||||
|
|
Loading…
Reference in a new issue