- Require using arrow functions for callbacks
This rule locates function expressions used as callbacks or function arguments. An error will be produced for any that could be replaced by an arrow function without changing the result.
Allows the use of named functions without restriction.
Allows function expressions containing this to be used as callbacks, as long as the function in question has not been explicitly bound.
You can check them out here.