small-rules/no-error
Use throw instead of error().
noError
Replace error(...) with throw.
This rule does not accept options.
{ "jsPlugins": [ "@pobammer-ts/small-rules" ], "rules": { "small-rules/no-error": "error" }}
error('Hello');
throw new Error('test');