website/src/pages/lint/rules/noNewSymbol.md
This rule is recommended by Rome.
Disallow new operators with the Symbol object.
Symbol cannot be instantiated. This results in throwing a TypeError.
Source: https://eslint.org/docs/latest/rules/no-new-symbol
var foo = new Symbol('foo');
var bar = Symbol('bar');
function baz() {
function Symbol() { }
new Symbol();
}