Skip to content

Commit

Permalink
Adding ValidationConfig.json files to fix NDA Validation Suite Errors…
Browse files Browse the repository at this point in the history
… & Warnings (Unity-Technologies#3888)

* Added ValidationConfig.json file to render-pipelines.high-definition with settings to silence NDA Validation Suite errors about "com.unity.render-pipelines.ps4" and "com.unity.render-pipelines.xboxone" being mentioned in Documentation~/Building-For-Consoles.md

* Added ValidationConfig.json file to render-pipelines.universal with settings to silence NDA Validation Suite errors about "com.unity.render-pipelines.ps4" and "com.unity.render-pipelines.xboxone" being mentioned in Documentation~/Building-For-Consoles.md

* Added ValidationConfig.json file to visualeffectgraph with settings to silence NDA Validation Suite warning about file "Documentation~/Operator-Switch.md" appearing to be Nintendo Switch platform specific.
  • Loading branch information
John-Whigham authored Mar 17, 2021
1 parent c98f353 commit ca3ad31
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 0 deletions.
30 changes: 30 additions & 0 deletions com.unity.render-pipelines.high-definition/ValidationConfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"FileContentKeywordValidation":
{
"Keywords":
[
{
"Targets": "+PS4",
"Files":
[
"Documentation~/Building-For-Consoles.md"
],
"Patterns":
[
"com\\.unity\\.render-pipelines\\.ps4"
]
},
{
"Targets": "+XboxOne",
"Files":
[
"Documentation~/Building-For-Consoles.md"
],
"Patterns":
[
"com\\.unity\\.render-pipelines\\.xboxone"
]
}
]
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions com.unity.render-pipelines.universal/ValidationConfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"FileContentKeywordValidation":
{
"Keywords":
[
{
"Targets": "+PS4",
"Files":
[
"Documentation~/Building-For-Consoles.md"
],
"Patterns":
[
"com\\.unity\\.render-pipelines\\.ps4"
]
},
{
"Targets": "+XboxOne",
"Files":
[
"Documentation~/Building-For-Consoles.md"
],
"Patterns":
[
"com\\.unity\\.render-pipelines\\.xboxone"
]
}
]
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions com.unity.visualeffectgraph/ValidationConfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"FilenameValidation":
{
"Filenames":
[
{
"Filename": "Documentation~/Operator-Switch.md",
"Targets": "+Switch"
}
]
}
}
7 changes: 7 additions & 0 deletions com.unity.visualeffectgraph/ValidationConfig.json.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ca3ad31

Please sign in to comment.