While it's possible to create a new error without using the new
keyword, it's better to be explicit.
This rule is fixable.
throw Error();
throw TypeError('unicorn');
throw lib.TypeError();
throw new Error();
throw new TypeError('unicorn');
throw new lib.TypeError();