Skip to content

Commit

Permalink
feat(linter): eslint-plugin-unicorn(throw-new-error)
Browse files Browse the repository at this point in the history
  • Loading branch information
camc314 committed Oct 16, 2023
1 parent 1f1eb6c commit 7d693d3
Show file tree
Hide file tree
Showing 3 changed files with 301 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ mod unicorn {
pub mod no_thenable;
pub mod no_unnecessary_await;
pub mod prefer_array_flat_map;
pub mod throw_new_error;
}

oxc_macros::declare_all_lint_rules! {
Expand Down Expand Up @@ -235,11 +236,12 @@ oxc_macros::declare_all_lint_rules! {
jest::valid_title,
unicorn::catch_error_name,
unicorn::error_message,
unicorn::filename_case,
unicorn::no_console_spaces,
unicorn::no_instanceof_array,
unicorn::no_unnecessary_await,
unicorn::no_thenable,
unicorn::filename_case,
unicorn::throw_new_error,
unicorn::prefer_array_flat_map,
import::named,
import::no_cycle,
Expand Down
139 changes: 139 additions & 0 deletions crates/oxc_linter/src/rules/unicorn/throw_new_error.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
use lazy_static::lazy_static;
use oxc_ast::{ast::Expression, AstKind};
use oxc_diagnostics::{
miette::{self, Diagnostic},
thiserror::Error,
};

use oxc_macros::declare_oxc_lint;
use oxc_span::Span;
use regex::Regex;

use crate::{ast_util::outermost_paren, context::LintContext, rule::Rule, AstNode};

#[derive(Debug, Error, Diagnostic)]
#[error("eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.")]
#[diagnostic(severity(warning), help("While it's possible to create a new error without using the `new` keyword, it's better to be explicit."))]
struct ThrowNewErrorDiagnostic(#[label] pub Span);

#[derive(Debug, Default, Clone)]
pub struct ThrowNewError;

declare_oxc_lint!(
/// ### What it does
///
/// Require `new` when throwing an error.`
///
/// ### Why is this bad?
///
/// While it's possible to create a new error without using the `new` keyword, it's better to be explicit.
///
/// ### Example
/// ```javascript
/// // Fail
/// throw Error('🦄');
/// throw TypeError('unicorn');
/// throw lib.TypeError('unicorn');
///
/// // Pass
/// throw new Error('🦄');
/// throw new TypeError('unicorn');
/// throw new lib.TypeError('unicorn');
///
/// ```
ThrowNewError,
style
);

impl Rule for ThrowNewError {
fn run<'a>(&self, node: &AstNode<'a>, ctx: &LintContext<'a>) {
let AstKind::CallExpression(call_expr) = node.kind() else { return };

let Some(outermost_paren_node) = ctx.nodes().parent_node(outermost_paren(node, ctx).id())
else {
return;
};

let AstKind::ThrowStatement(_) = outermost_paren(outermost_paren_node, ctx).kind() else {
return;
};

match &call_expr.callee.without_parenthesized() {
Expression::Identifier(v) => {
if !CUSTOM_ERROR_REGEX_PATTERN.is_match(&v.name) {
return;
}
}
Expression::MemberExpression(v) => {
if v.is_computed() {
return;
}
if let Some(v) = v.static_property_name() {
if !CUSTOM_ERROR_REGEX_PATTERN.is_match(v) {
return;
}
}
}
_ => return,
}

ctx.diagnostic(ThrowNewErrorDiagnostic(call_expr.span));
}
}

lazy_static! {
static ref CUSTOM_ERROR_REGEX_PATTERN: Regex =
Regex::new(r"^(?:[A-Z][\da-z]*)*Error$").unwrap();
}

#[test]
fn test() {
use crate::tester::Tester;

let pass = vec![
("throw new Error()", None),
("new Error()", None),
("throw new TypeError()", None),
("throw new EvalError()", None),
("throw new RangeError()", None),
("throw new ReferenceError()", None),
("throw new SyntaxError()", None),
("throw new URIError()", None),
("throw new CustomError()", None),
("throw new FooBarBazError()", None),
("throw new ABCError()", None),
("throw getError()", None),
("throw CustomError", None),
("throw getErrorConstructor()()", None),
("throw lib[Error]()", None),
("throw lib[\"Error\"]()", None),
("throw lib.getError()", None),
];

let fail = vec![
("throw Error()", None),
("throw (Error)()", None),
("throw lib.Error()", None),
("throw lib.mod.Error()", None),
("throw lib[mod].Error()", None),
("throw (lib.mod).Error()", None),
("throw Error('foo')", None),
("throw CustomError('foo')", None),
("throw FooBarBazError('foo')", None),
("throw ABCError('foo')", None),
("throw Abc3Error('foo')", None),
("throw TypeError()", None),
("throw EvalError()", None),
("throw RangeError()", None),
("throw ReferenceError()", None),
("throw SyntaxError()", None),
("throw URIError()", None),
("throw (( URIError() ))", None),
("throw (( URIError ))()", None),
("throw getGlobalThis().Error()", None),
("throw utils.getGlobalThis().Error()", None),
("throw (( getGlobalThis().Error ))()", None),
];

Tester::new(ThrowNewError::NAME, pass, fail).test_and_snapshot();
}
159 changes: 159 additions & 0 deletions crates/oxc_linter/src/snapshots/throw_new_error.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
---
source: crates/oxc_linter/src/tester.rs
expression: throw_new_error
---
eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw Error()
· ───────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw (Error)()
· ─────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw lib.Error()
· ───────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw lib.mod.Error()
· ───────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw lib[mod].Error()
· ────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw (lib.mod).Error()
· ─────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw Error('foo')
· ────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw CustomError('foo')
· ──────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw FooBarBazError('foo')
· ─────────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw ABCError('foo')
· ───────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw Abc3Error('foo')
· ────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw TypeError()
· ───────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw EvalError()
· ───────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw RangeError()
· ────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw ReferenceError()
· ────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw SyntaxError()
· ─────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw URIError()
· ──────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw (( URIError() ))
· ──────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw (( URIError ))()
· ────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw getGlobalThis().Error()
· ───────────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw utils.getGlobalThis().Error()
· ─────────────────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.

eslint-plugin-unicorn(throw-new-error): Require `new` when throwing an error.
╭─[throw_new_error.tsx:1:1]
1throw (( getGlobalThis().Error ))()
· ─────────────────────────────
╰────
help: While it's possible to create a new error without using the `new` keyword, it's better to be explicit.


0 comments on commit 7d693d3

Please sign in to comment.