Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 323 Bytes

no-unnecessary-callback-wrapper.md

File metadata and controls

11 lines (6 loc) · 323 Bytes

Pattern: Unnecessary callback wrapper

Issue: -

Description

Replace x => f(x) with just f. To catch more cases, enable only-arrow-functions and arrow-return-shorthand too.

Further Reading