Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/207#discussion_r151401197
--- Diff: aria/parser/presentation/presentation.py ---
@@ -199,6 +199,9 @@ class Presentation(PresentationBase):
"""
def _validate(self, context):
+ if (not
context.presentation.configuration.get('validate_normative', True)) \
+ and self._get_extension('normative'):
+ return
--- End diff --
In addition, do we have any method of detecting if the user is using
incorrect normative types? For example, he references a file from within their
company and that file has a typo.
---