Does anyone know how to add an eslint rule that will add linebreak padding before and/or after arrow functions? Adding the function statement type here only updates function() style functions. I don't want linebreak padding around all blocks, though. https://eslint.org/docs/rules/padding-line-between-statements
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '=>', next: '*' },