diff --git a/.eslintrc.js b/.eslintrc.js index 4d6fe31b20d731..0a6b96877ec0c2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -282,6 +282,10 @@ module.exports = { 'one-var': ['error', { initialized: 'never' }], 'one-var-declaration-per-line': 'error', 'operator-linebreak': ['error', 'after'], + 'padding-line-between-statements': [ + 'error', + { blankLine: 'always', prev: 'function', next: 'function' }, + ], 'prefer-const': ['error', { ignoreReadBeforeAssign: true }], 'quotes': ['error', 'single', { avoidEscape: true }], 'quote-props': ['error', 'consistent'],