Open dotoleeoak opened 1 year ago
필요 없는 return statement를 방지합니다.
// ❌ function foo() { return; } function foo() { doSomething(); return; } function foo() { if (condition) { bar(); return; } else { baz(); } }
// ✅ function foo() { return 5; } function foo() { return doSomething(); } function foo() { if (condition) { bar(); return; } else { baz(); } qux(); }
Changed the connected Notion task status to not-started
no-useless-return
Describe the problem and solution
필요 없는 return statement를 방지합니다.
Validations