Disallows a specified set of identifier names.
Type: Array
Values: Array of strings, which should be disallowed as identifier names
"disallowIdentifierNames": ['temp', 'foo']
var good = 1;
object['fine'] = 2;
object.fine = 3;
var temp = 1;
object['foo'] = 2;
object.foo = 3;