-
Notifications
You must be signed in to change notification settings - Fork 7
Update global section to not have "additionalProperties: false" #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
cf2d743
to
a1e405a
Compare
This reverts commit 1fc8483. Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
a1e405a
to
ec5e984
Compare
@@ -165,7 +162,7 @@ func Render(document *parser.Document) (string, error) { | |||
} | |||
|
|||
newSchema.SchemaProps.Properties = properties | |||
if len(level.Children) > 0 { | |||
if len(level.Children) > 0 && !(paths.Path{}).WithProperty("global").IsSubPathOf(level.Path) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: Consider adding a comment to clarify the purpose of && !(paths...
. Its function may not be immediately clear at first glance.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve
/hold if you want to address the suggestion
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: maelvls The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
New changes are detected. LGTM label has been removed. |
/unhold I added the comments. |
I submitted the wrong commits in #42, this PR should fix that.