uken / mooble

Static Analysis For Unity Scenes & Prefabs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow specification of different violation levels/scope for the same rule

elmoeleven opened this issue · comments

We should be able to support a config like this:

{
  "Name": "NoMissingObjectReferences",
  "ViolationLevel": "Error",
  "ViolationScope": "Scene",
  "Exclusions": []
},
{
  "Name": "NoMissingObjectReferences",
  "ViolationLevel": "Warning",
  "ViolationScope": "Prefab",
  "Exclusions": []
}