Skip to content
Snippets Groups Projects
Commit af992d4f authored by Victor Poughon's avatar Victor Poughon
Browse files

DOc: disable false positive warnings

parent 2a7217e7
No related branches found
No related tags found
2 merge requests!621Release 7.0 (master),!332Fix cookbook warnings and formatting
This commit is part of merge request !332. Comments created here will be created in the context of that merge request.
......@@ -26,8 +26,8 @@ def parameter_warnings(app_warn, app, key):
#if len(description) > 0 and description[-1] != ".":
#warn("description does not end with a period")
if len(description) > 0 and " :" in description:
warn("description has a space before a colon")
#if len(description) > 0 and " :" in description:
#warn("description has a space before a colon")
def application_documentation_warnings(app):
"Emit warnings about application documentation"
......@@ -45,8 +45,8 @@ def application_documentation_warnings(app):
if re.search("\\n [a-zA-Z]", longdescription):
warn("Application Long Description contains '\\n ' pattern (usually not intended)")
if " :" in longdescription:
warn("Application Long Description has a space before a colon")
#if " :" in longdescription:
#warn("Application Long Description has a space before a colon")
if app.GetNumberOfExamples() == 0:
warn("Application has no examples")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment