es-x/no-nonstandard-symbol-properties 
disallow non-standard static properties on
Symbolclass
This rule reports non-standard static properties on Symbol class as errors.
💡 Examples 
⛔ Examples of incorrect code for this rule:
🔧 Options 
This rule has an option.
jsonc
{
  "rules": {
    "es-x/no-nonstandard-symbol-properties": [
      "error",
      {
        "allow": [],
        "allowTestedProperty": false
      }
    ]
  }
}allow: string[] 
An array of non-standard property names to allow.
allowTestedProperty: boolean 
Configure the allowTestedProperty mode for only this rule. This is prior to the settings['es-x'].allowTestedProperty setting.
🚀 Version 
This rule was introduced in v8.2.0.