← Back

arrow-spacing warning

Requires spacing before and after arrow functions arrow

Examples

❌  Incorrect

(a)=>{};
()=> {};
() =>{};
(a)=> {};
(a) =>{};

✅  Correct

(a) => {}