From 7605cd3ecf3bc9689451bc9b7bfe4b546f36970a Mon Sep 17 00:00:00 2001 From: Boshen Date: Tue, 5 Mar 2024 17:29:51 +0800 Subject: [PATCH] feat(linter): change ban-ts-comment to pedantic --- crates/oxc_linter/src/rules/typescript/ban_ts_comment.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/typescript/ban_ts_comment.rs b/crates/oxc_linter/src/rules/typescript/ban_ts_comment.rs index ae49b5ad3..101e9c29e 100644 --- a/crates/oxc_linter/src/rules/typescript/ban_ts_comment.rs +++ b/crates/oxc_linter/src/rules/typescript/ban_ts_comment.rs @@ -103,7 +103,7 @@ declare_oxc_lint!( /// } /// ``` BanTsComment, - nursery // since rust regex may not compatible with ECMAScript regex + pedantic ); impl Rule for BanTsComment {