From 7ddd3a6d11c35e8f6491edfa20fc6175086dfffb Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 7 Jun 2024 00:13:47 +0800 Subject: [PATCH] chore: change no-constructor-return to pedantic --- crates/oxc_linter/src/rules/eslint/no_constructor_return.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_linter/src/rules/eslint/no_constructor_return.rs b/crates/oxc_linter/src/rules/eslint/no_constructor_return.rs index 48d94d62b..ec9967d44 100644 --- a/crates/oxc_linter/src/rules/eslint/no_constructor_return.rs +++ b/crates/oxc_linter/src/rules/eslint/no_constructor_return.rs @@ -44,7 +44,7 @@ declare_oxc_lint!( /// } /// ``` NoConstructorReturn, - correctness + pedantic ); impl Rule for NoConstructorReturn {